/* Options: Date: 2025-05-04 22:56:01 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUniqueEndpointValue.* //ExcludeTypes: //InitializeCollections: False //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.* /** * 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") open class GetUniqueEndpointValue : IReturn { /** * The account ID you are interested in */ @ApiMember(Description="The account ID you are interested in") open var accountId:String? = null /** * The endpoint field you want a unique value for */ @ApiMember(Description="The endpoint field you want a unique value for") open var fieldName:String? = null /** * The prefix to use for the value */ @ApiMember(Description="The prefix to use for the value") open var prefix:String? = null /** * The length of the value */ @ApiMember(Description="The length of the value") open var length:Int? = null companion object { private val responseType = GetUniqueEndpointValueResponse::class.java } override fun getResponseType(): Any? = GetUniqueEndpointValue.responseType } open class GetUniqueEndpointValueResponse { open var value:String? = null }