/* Options: Date: 2025-05-04 22:26:56 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetUniqueEndpointValue.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Voice.Api.Flows.Values; namespace Voice.Api.Flows.Values { /// ///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 partial class GetUniqueEndpointValue : IReturn { /// ///The account ID you are interested in /// [ApiMember(Description="The account ID you are interested in")] public virtual string AccountId { get; set; } /// ///The endpoint field you want a unique value for /// [ApiMember(Description="The endpoint field you want a unique value for")] public virtual string FieldName { get; set; } /// ///The prefix to use for the value /// [ApiMember(Description="The prefix to use for the value")] public virtual string Prefix { get; set; } /// ///The length of the value /// [ApiMember(Description="The length of the value")] public virtual int Length { get; set; } } public partial class GetUniqueEndpointValueResponse { public virtual string Value { get; set; } } }