/* Options: Date: 2025-05-04 23:23:03 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: NewBillable.* //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 { /// ///Report/create a new billable /// [Route("/billables", "POST")] [Api(Description="Report/create a new billable")] public partial class NewBillable : IReturnVoid, IPost { /// ///The account to associate the billable with /// [ApiMember(Description="The account to associate the billable with")] public virtual string AccountId { get; set; } /// ///The customer to associate the billable with /// [ApiMember(Description="The customer to associate the billable with")] public virtual string CustomerId { get; set; } /// ///The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID) /// [ApiMember(Description="The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID)")] public virtual string SessionId { get; set; } /// ///The call SID to report /// [ApiMember(Description="The call SID to report")] public virtual string CallSid { get; set; } } }