' Options:
'Date: 2025-05-05 00:41:16
'Version: 8.71
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://team.evovoice.io
'
'''GlobalNamespace:
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: 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
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Voice.Api.Billing
Namespace Global
Namespace Voice.Api.Billing
Public Partial Class BillingCustomerInfo
Public Overridable Property CustomerId As String
Public Overridable Property InternationalCosts As Double
Public Overridable Property HasCallRecording As Boolean
End Class
Public Partial Class BillingInfo
Public Overridable Property Customers As List(Of BillingCustomerInfo)
End Class
'''
'''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
Implements IReturn(Of BillingInfo)
'''
'''Your Evo Voice Account ID
'''
Public Overridable Property AccountId As String
'''
'''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)
'''
Public Overridable Property StartDate As String
'''
'''The end of the date range you want to query for (we will include this entire day in the billing)
'''
Public Overridable Property EndDate As String
'''
'''Specify this to filter to a specific customer.
'''
Public Overridable Property CustomerId As String
End Class
End Namespace
End Namespace