' Options: 'Date: 2026-01-13 14:46:42 '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: GetAIUsage.* '''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.AI Namespace Global Namespace Voice.Api.AI Public Partial Class AIAccountUsage ''' '''The account ID this customer belongs to ''' Public Overridable Property AccountId As String ''' '''The total number of AI minutes used in the date range ''' Public Overridable Property AIMinutes As Integer End Class Public Partial Class AICustomerUsage ''' '''The account ID this customer belongs to ''' Public Overridable Property AccountId As String ''' '''The customer ID for this uage ''' Public Overridable Property CustomerId As String ''' '''The total number of AI minutes used in the date range ''' Public Overridable Property AIMinutes As Integer End Class Public Partial Class AIUsage Public Overridable Property AccountUsage As List(Of AIAccountUsage) Public Overridable Property CustomerUsage As List(Of AICustomerUsage) End Class Public Partial Class GetAIUsage Implements IReturn(Of AIUsage) Implements IGet ''' '''Filter by account ID. If not specified will return entries for all customers in all accounts in the date range ''' Public Overridable Property AccountId As String ''' '''Filter by customer ID. If not specified, will return all customers for the accounts considered ''' Public Overridable Property CustomerId As String ''' '''The start of the date range to consider ''' Public Overridable Property StartDate As String ''' '''The end of the date range to consider ''' Public Overridable Property EndDate As String End Class End Namespace End Namespace