(* Options: Date: 2025-05-04 23:34:33 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: FindDuplicates.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Endpoints open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type FindDuplicateEntry() = member val FieldValue:String = null with get,set member val Endpoints:ResizeArray = null with get,set [] type FindDuplicatesResponse() = member val Duplicates:ResizeArray = null with get,set [] [] type FindDuplicates() = interface IReturn /// ///The account ID to check /// [] member val AccountId:String = null with get,set /// ///The field name to search for /// [] member val EndpointFieldName:String = null with get,set