' Options: 'Date: 2025-05-04 23:34:07 '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: ListLogEntries.* '''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 Imports Voice.Api.Sys Imports Voice.Api.Customers Namespace Global Namespace Voice.Api Public Partial Class EntityInfo ''' '''The ID of the object ''' Public Overridable Property Id As String ''' '''The date the object was created ''' Public Overridable Property DateCreated As String ''' '''The date the object was last modified ''' Public Overridable Property DateLastModified As String ''' '''The user that created this object ''' Public Overridable Property CreatedBy As String ''' '''The user that last modified this object ''' Public Overridable Property LastModifiedBy As String End Class Public Partial Class ListRequest(Of T) Implements IGet ''' '''The page of data to retrieve ''' Public Overridable Property Page As Integer ''' '''If you want all objects to be returned. This should be used with care ''' Public Overridable Property All As Boolean ''' '''The number per page to retrieve ''' Public Overridable Property CountPerPage As Integer ''' '''Specific IDs ''' Public Overridable Property SpecificIds As List(Of String) ''' '''Specify a sort field ''' Public Overridable Property SortField As String ''' '''Specify a sort order ''' Public Overridable Property SortOrder As SortOrders ''' '''Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array ''' Public Overridable Property SimplifiedPaging As Boolean End Class Public Partial Class ListResponse(Of T) ''' '''The items ''' Public Overridable Property Items As List(Of LogEntryInfo) ''' '''The total number of items ''' Public Overridable Property TotalCount As Integer ''' '''The total number of pages ''' Public Overridable Property TotalPages As Integer ''' '''Are there more pages of items? Used with simplified paging ''' Public Overridable Property HasMorePages As Boolean End Class Public Enum SortOrders Ascend Descend End Enum End Namespace Namespace Voice.Api.Customers Public Partial Class CustomerBreadcrumb Public Overridable Property Id As String Public Overridable Property Name As String End Class End Namespace Namespace Voice.Api.Sys Public Partial Class ListLogEntries Inherits ListRequest(Of LogEntryInfo) Implements IReturn(Of ListResponse(Of LogEntryInfo)) ''' '''The IDs of the account whose log entries you want to retrieve ''' Public Overridable Property AccountIds As List(Of String) ''' '''The IDs of the customers whose log entries you want to retrieve ''' Public Overridable Property CustomerIds As List(Of String) ''' '''The start date to retrieve usage records for (YYYY-MM-DD) ''' Public Overridable Property StartDate As String ''' '''The end date to retrieve logs for (YYYY-MM-DD) ''' Public Overridable Property EndDate As String ''' '''Search by description ''' Public Overridable Property Description As String End Class Public Partial Class LogEntryInfo Inherits EntityInfo ''' '''The account ID this endpoint is associated with ''' Public Overridable Property AccountId As String ''' '''The name of the account this endpoint is associated with ''' Public Overridable Property AccountName As String ''' '''The ID of the customer this endpoint is associated with ''' Public Overridable Property CustomerId As String ''' '''The name of the customer this endpoint is associated with ''' Public Overridable Property CustomerName As String ''' '''The breadcrumb to the customer for this endpoint ''' Public Overridable Property CustomerBreadcrumb As List(Of CustomerBreadcrumb) Public Overridable Property UserName As String Public Overridable Property Description As String End Class End Namespace End Namespace