/* Options: Date: 2025-05-05 00:12:51 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetUniqueEndpointValue.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get a unique number string value for an endpoint field */ // @Route("/values/endpoint/unique", "GET") // @Api(Description="Get a unique number string value for an endpoint field") public class GetUniqueEndpointValue : IReturn, Codable { public typealias Return = GetUniqueEndpointValueResponse /** * The account ID you are interested in */ // @ApiMember(Description="The account ID you are interested in") public var accountId:String? /** * The endpoint field you want a unique value for */ // @ApiMember(Description="The endpoint field you want a unique value for") public var fieldName:String? /** * The prefix to use for the value */ // @ApiMember(Description="The prefix to use for the value") public var `prefix`:String? /** * The length of the value */ // @ApiMember(Description="The length of the value") public var length:Int? required public init(){} } public class GetUniqueEndpointValueResponse : Codable { public var value:String? required public init(){} }