' Options: 'Date: 2025-11-25 22:42:01 'Version: 8.71 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://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: DeleteAISessionAction.* '''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.AI 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 End Namespace Namespace Voice.Api.AI Public Partial Class AISessionActionInfo Public Overridable Property [Date] As String Public Overridable Property Id As String Public Overridable Property FunctionName As String Public Overridable Property Arguments As String Public Overridable Property Description As String Public Overridable Property CanBeApplied As Boolean End Class Public Partial Class AISessionInfo Inherits EntityInfo ''' '''The ID of the account associated with this session ''' Public Overridable Property AccountId As String ''' '''The name of the account associated with this customer ''' Public Overridable Property AccountName As String ''' '''The purpose for this AI session ''' Public Overridable Property Purpose As String ''' '''The actions performed in this session ''' Public Overridable Property Actions As List(Of AISessionActionInfo) End Class ''' '''Delete the specified session action ''' Public Partial Class DeleteAISessionAction Implements IReturnVoid Implements IDelete ''' '''The ID of the session ''' Public Overridable Property SessionId As String ''' '''The ID of the action to delete ''' Public Overridable Property ActionId As String End Class End Namespace End Namespace