(* Options: Date: 2025-05-04 23:51:06 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: NewBillable.* //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 /// ///Report/create a new billable /// [] [] [] type NewBillable() = interface IReturnVoid interface IPost /// ///The account to associate the billable with /// [] member val AccountId:String = null with get,set /// ///The customer to associate the billable with /// [] member val CustomerId:String = null with get,set /// ///The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID) /// [] member val SessionId:String = null with get,set /// ///The call SID to report /// [] member val CallSid:String = null with get,set