/* Options: Date: 2025-12-06 07:49:16 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: GetBillingContactRequest.* //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_contact", Verbs="GET") public static class GetBillingContactRequest implements IReturn, IGet, IHasBusinessId { public Long businessId = null; public Long getBusinessId() { return businessId; } public GetBillingContactRequest setBusinessId(Long value) { this.businessId = value; return this; } private static Object responseType = GetBillingContactResponse.class; public Object getResponseType() { return responseType; } } public static class GetBillingContactResponse { public BillingContact billingContact = null; public BillingContact getBillingContact() { return billingContact; } public GetBillingContactResponse setBillingContact(BillingContact value) { this.billingContact = value; return this; } } public static interface IHasBusinessId { public Long businessId = null; } public static class BillingContact { public String person = null; public String phone = null; public String email = null; public String getPerson() { return person; } public BillingContact setPerson(String value) { this.person = value; return this; } public String getPhone() { return phone; } public BillingContact setPhone(String value) { this.phone = value; return this; } public String getEmail() { return email; } public BillingContact setEmail(String value) { this.email = value; return this; } } }