(* Options: Date: 2025-05-04 23:02:25 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: EndpointsReport.* //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 EndpointTypes = | PhoneNumber = 0 | User = 1 | FaxNumber = 2 | EmailAddress = 3 | Unused_1 = 4 | Unused_2 = 5 | Unused_3 = 6 | Unused_4 = 7 | Unused_5 = 8 | Team = 9 | Assistant = 10 [] type ReportRequest() = interface IPost /// ///The account ID this report should be run for /// [] member val AccountId:String = null with get,set /// ///The email address to notify after the report is run /// [] member val EmailAddressToNotify:String = null with get,set /// ///The webhook to call after the report is complete with the data from the report /// [] member val WebhookUrl:String = null with get,set type ReportStatuses = | Queued = 0 | Running = 1 | Completed = 2 | Error = 3 [] type ReportInfo() = member val Id:String = null with get,set member val Name:String = null with get,set member val Status:ReportStatuses = new ReportStatuses() with get,set member val StatusMessage:String = null with get,set member val DateCreated:String = null with get,set member val DateUpdated:String = null with get,set member val DownloadLink:String = null with get,set member val JobId:String = null with get,set member val EmailAddressToNotify:String = null with get,set member val Server:String = null with get,set /// ///This report returns all of the endpoints broken down by type per tab /// [] [] [] type EndpointsReport() = inherit ReportRequest() interface IReturn /// ///The types of endpoints to return /// [] member val Types:ResizeArray = null with get,set /// ///Filter by specific customer /// [] member val CustomerId:String = null with get,set