/* Options: Date: 2025-05-04 22:23:00 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AppSearchPhoneNumbers.* //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 dtos { @Route(Path="/portal/search-phone-numbers", Verbs="GET") public static class AppSearchPhoneNumbers implements IReturn { public String accountId = null; public String customerId = null; public String areaCode = null; public String countryCode = null; public String postalCode = null; public String contains = null; public Integer distance = null; public EndpointTypes phoneNumberType = null; public String getAccountId() { return accountId; } public AppSearchPhoneNumbers setAccountId(String value) { this.accountId = value; return this; } public String getCustomerId() { return customerId; } public AppSearchPhoneNumbers setCustomerId(String value) { this.customerId = value; return this; } public String getAreaCode() { return areaCode; } public AppSearchPhoneNumbers setAreaCode(String value) { this.areaCode = value; return this; } public String getCountryCode() { return countryCode; } public AppSearchPhoneNumbers setCountryCode(String value) { this.countryCode = value; return this; } public String getPostalCode() { return postalCode; } public AppSearchPhoneNumbers setPostalCode(String value) { this.postalCode = value; return this; } public String getContains() { return contains; } public AppSearchPhoneNumbers setContains(String value) { this.contains = value; return this; } public Integer getDistance() { return distance; } public AppSearchPhoneNumbers setDistance(Integer value) { this.distance = value; return this; } public EndpointTypes getPhoneNumberType() { return phoneNumberType; } public AppSearchPhoneNumbers setPhoneNumberType(EndpointTypes value) { this.phoneNumberType = value; return this; } private static Object responseType = AppSearchPhoneNumbersResponse.class; public Object getResponseType() { return responseType; } } public static class AppSearchPhoneNumbersResponse { public ArrayList numbers = null; public ArrayList getNumbers() { return numbers; } public AppSearchPhoneNumbersResponse setNumbers(ArrayList value) { this.numbers = value; return this; } } public static enum EndpointTypes { PhoneNumber, User, FaxNumber, EmailAddress, Unused1, Unused2, Unused3, Unused4, Unused5, Team, Assistant; } public static class AppSearchPhoneNumberInfo { public String phoneNumber = null; public String getPhoneNumber() { return phoneNumber; } public AppSearchPhoneNumberInfo setPhoneNumber(String value) { this.phoneNumber = value; return this; } } }