(* Options: Date: 2025-05-05 01:29:34 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: ListUsageRecords.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Dashboard open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations /// ///Gets all usage records for specified date range /// [] [] [] type ListUsageRecords() = interface IReturn> interface IGet /// ///The account ID you are listing for /// [] member val AccountId:String = null with get,set /// ///The start date to retrieve usage records for (YYYY-MM-DD) /// [] member val StartDate:String = null with get,set /// ///The end date to retrieve usage records for (YYYY-MM-DD) /// [] member val EndDate:String = null with get,set