/* Options: Date: 2025-05-04 20:26:25 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: GetUniqueEndpointValue.* //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 { /** * Get a unique number string value for an endpoint field */ @Route(Path="/values/endpoint/unique", Verbs="GET") @Api(Description="Get a unique number string value for an endpoint field") public static class GetUniqueEndpointValue implements IReturn { /** * The account ID you are interested in */ @ApiMember(Description="The account ID you are interested in") public String accountId = null; /** * The endpoint field you want a unique value for */ @ApiMember(Description="The endpoint field you want a unique value for") public String fieldName = null; /** * The prefix to use for the value */ @ApiMember(Description="The prefix to use for the value") public String prefix = null; /** * The length of the value */ @ApiMember(Description="The length of the value") public Integer length = null; public String getAccountId() { return accountId; } public GetUniqueEndpointValue setAccountId(String value) { this.accountId = value; return this; } public String getFieldName() { return fieldName; } public GetUniqueEndpointValue setFieldName(String value) { this.fieldName = value; return this; } public String getPrefix() { return prefix; } public GetUniqueEndpointValue setPrefix(String value) { this.prefix = value; return this; } public Integer getLength() { return length; } public GetUniqueEndpointValue setLength(Integer value) { this.length = value; return this; } private static Object responseType = GetUniqueEndpointValueResponse.class; public Object getResponseType() { return responseType; } } public static class GetUniqueEndpointValueResponse { public String value = null; public String getValue() { return value; } public GetUniqueEndpointValueResponse setValue(String value) { this.value = value; return this; } } }