' Options: 'Date: 2025-11-04 22:58:25 '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: PatchAISession.* '''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 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 End Class ''' '''Update a specific session ''' Public Partial Class PatchAISession Implements IReturn(Of AISessionInfo) Implements IPatch ''' '''The ID of the session you want to update ''' Public Overridable Property SessionId As String ''' '''The purpose of this session ''' Public Overridable Property Purpose As String End Class End Namespace End Namespace