/* Options: Date: 2025-12-06 06:59:33 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: AddOrUpdateBillingEntityRequest.* //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/add_or_update_billing_company", Verbs="PUT") public static class AddOrUpdateBillingEntityRequest implements IReturn, IPut, IHasBusinessId { public Long businessId = null; public BillingEntity entity = null; public Long getBusinessId() { return businessId; } public AddOrUpdateBillingEntityRequest setBusinessId(Long value) { this.businessId = value; return this; } public BillingEntity getEntity() { return entity; } public AddOrUpdateBillingEntityRequest setEntity(BillingEntity value) { this.entity = value; return this; } private static Object responseType = AddOrUpdateBillingEntityResponse.class; public Object getResponseType() { return responseType; } } public static class AddOrUpdateBillingEntityResponse { public BillingEntity entity = null; public BillingEntity getEntity() { return entity; } public AddOrUpdateBillingEntityResponse setEntity(BillingEntity value) { this.entity = 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; } } }