(* Options: Date: 2025-05-04 23:45:35 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: CdrReport.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Reports open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] 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 [] [] type CdrReport() = inherit ReportRequest() interface IReturn member val TimeZoneId:String = null with get,set member val StartDate:String = null with get,set member val EndDate:String = null with get,set member val CustomerId:String = null with get,set