(* Options: Date: 2026-01-13 14:45:13 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: GetAIUsage.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.AI open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type AIAccountUsage() = /// ///The account ID this customer belongs to /// [] member val AccountId:String = null with get,set /// ///The total number of AI minutes used in the date range /// [] member val AIMinutes:Int32 = new Int32() with get,set [] type AICustomerUsage() = /// ///The account ID this customer belongs to /// [] member val AccountId:String = null with get,set /// ///The customer ID for this uage /// [] member val CustomerId:String = null with get,set /// ///The total number of AI minutes used in the date range /// [] member val AIMinutes:Int32 = new Int32() with get,set [] type AIUsage() = member val AccountUsage:ResizeArray = null with get,set member val CustomerUsage:ResizeArray = null with get,set [] [] type GetAIUsage() = interface IReturn interface IGet /// ///Filter by account ID. If not specified will return entries for all customers in all accounts in the date range /// [] member val AccountId:String = null with get,set /// ///Filter by customer ID. If not specified, will return all customers for the accounts considered /// [] member val CustomerId:String = null with get,set /// ///The start of the date range to consider /// [] member val StartDate:String = null with get,set /// ///The end of the date range to consider /// [] member val EndDate:String = null with get,set