/* Options: Date: 2025-12-06 06:55:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CancelSubscriptionRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BusinessApi { @Route(Path="/subscription/cancel", Verbs="POST") public static class CancelSubscriptionRequest implements IReturn, IPost, IHasBusinessId { public Long businessId = null; public Long getBusinessId() { return businessId; } public CancelSubscriptionRequest setBusinessId(Long value) { this.businessId = value; return this; } private static Object responseType = CancelSubscriptionResponse.class; public Object getResponseType() { return responseType; } } public static class CancelSubscriptionResponse { public Boolean success = null; public Boolean isSuccess() { return success; } public CancelSubscriptionResponse setSuccess(Boolean value) { this.success = value; return this; } } public static interface IHasBusinessId { public Long businessId = null; } }