(* Options: Date: 2025-05-04 23:26:51 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetUniqueEndpointValue.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Flows.Values open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GetUniqueEndpointValueResponse() = member val Value:String = null with get,set /// ///Get a unique number string value for an endpoint field /// [] [] [] type GetUniqueEndpointValue() = interface IReturn /// ///The account ID you are interested in /// [] member val AccountId:String = null with get,set /// ///The endpoint field you want a unique value for /// [] member val FieldName:String = null with get,set /// ///The prefix to use for the value /// [] member val Prefix:String = null with get,set /// ///The length of the value /// [] member val Length:Int32 = new Int32() with get,set