/* Options: Date: 2025-05-04 22:48:23 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetBilling.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Voice.Api.Billing; namespace Voice.Api.Billing { public partial class BillingCustomerInfo { public virtual string CustomerId { get; set; } public virtual double InternationalCosts { get; set; } public virtual bool HasCallRecording { get; set; } } public partial class BillingInfo { public virtual List Customers { 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. /// [Route("/billing", "GET")] [Api(Description="Get the billing totals for the specified date range. Please note that we do not support getting billing at the hourly time granularity.")] public partial class GetBilling : IReturn { /// ///Your Evo Voice Account ID /// [ApiMember(Description="Your Evo Voice Account ID", IsRequired=true)] public virtual string AccountId { 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) /// [ApiMember(Description="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)", IsRequired=true)] public virtual string StartDate { get; set; } /// ///The end of the date range you want to query for (we will include this entire day in the billing) /// [ApiMember(Description="The end of the date range you want to query for (we will include this entire day in the billing)", IsRequired=true)] public virtual string EndDate { get; set; } /// ///Specify this to filter to a specific customer. /// [ApiMember(Description="Specify this to filter to a specific customer.")] public virtual string CustomerId { get; set; } } }