(* Options: Date: 2025-05-05 01:00: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: GetBilling.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Billing open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type BillingCustomerInfo() = member val CustomerId:String = null with get,set member val InternationalCosts:Double = new Double() with get,set member val HasCallRecording:Boolean = new Boolean() with get,set [] type BillingInfo() = member val Customers:ResizeArray = null with get,set /// ///Get the billing totals for the specified date range. Please note that we do not support getting billing at the hourly time granularity. /// [] [] [] type GetBilling() = interface IReturn /// ///Your Evo Voice Account ID /// [] member val AccountId:String = null with get,set /// ///The start of the date range that you want to query for (we will only use the date portion, so it will include the entire day even if you specify a time as well) /// [] member val StartDate:String = null with get,set /// ///The end of the date range you want to query for (we will include this entire day in the billing) /// [] member val EndDate:String = null with get,set /// ///Specify this to filter to a specific customer. /// [] member val CustomerId:String = null with get,set