/* Options: Date: 2025-12-06 06:55:41 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: GetBillingEntityRequest.* //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="/business/get_billing_company", Verbs="GET") public static class GetBillingEntityRequest implements IReturn, IGet, IHasBusinessId { public Long businessId = null; public Long getBusinessId() { return businessId; } public GetBillingEntityRequest setBusinessId(Long value) { this.businessId = value; return this; } private static Object responseType = GetBillingEntityResponse.class; public Object getResponseType() { return responseType; } } public static class GetBillingEntityResponse { public BillingEntity billingEntity = null; public BillingEntity getBillingEntity() { return billingEntity; } public GetBillingEntityResponse setBillingEntity(BillingEntity value) { this.billingEntity = value; return this; } } public static interface IHasBusinessId { public Long businessId = null; } public static class BillingEntity { public String name = null; public String organizationNumber = null; public String postalAddress = null; public String postalCode = null; public String city = null; public String countryCode = null; public String getName() { return name; } public BillingEntity setName(String value) { this.name = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public BillingEntity setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getPostalAddress() { return postalAddress; } public BillingEntity setPostalAddress(String value) { this.postalAddress = value; return this; } public String getPostalCode() { return postalCode; } public BillingEntity setPostalCode(String value) { this.postalCode = value; return this; } public String getCity() { return city; } public BillingEntity setCity(String value) { this.city = value; return this; } public String getCountryCode() { return countryCode; } public BillingEntity setCountryCode(String value) { this.countryCode = value; return this; } } }