(* Options: Date: 2025-05-04 23:26:30 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ConferenceSession.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Sessions open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations /// ///Moves the specified session into a conference room by name /// [] [] [] type ConferenceSession() = interface IReturnVoid interface IPost /// ///The ID of the session that is being moved /// [] member val SessionId:String = null with get,set /// ///The sid of the active call that is on the voice device /// [] member val CallSid:String = null with get,set /// ///The name of the conference room /// [] member val QueueName:String = null with get,set