(* 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: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: NewAISession.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type EntityInfo() = /// ///The ID of the object /// [] member val Id:String = null with get,set /// ///The date the object was created /// [] member val DateCreated:String = null with get,set /// ///The date the object was last modified /// [] member val DateLastModified:String = null with get,set /// ///The user that created this object /// [] member val CreatedBy:String = null with get,set /// ///The user that last modified this object /// [] member val LastModifiedBy:String = null with get,set [] type AISessionInfo() = inherit EntityInfo() /// ///The ID of the account associated with this session /// [] member val AccountId:String = null with get,set /// ///The name of the account associated with this customer /// [] member val AccountName:String = null with get,set /// ///The purpose for this AI session /// [] member val Purpose:String = null with get,set /// ///Creates a new session /// [] [] [] type NewAISession() = interface IReturn interface IPost /// ///The account ID to associate this session with /// [] member val AccountId:String = null with get,set /// ///The purpose for this session /// [] member val Purpose:String = null with get,set