/* Options: Date: 2025-05-04 23:04:30 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ConferenceSession.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Moves the specified session into a conference room by name */ // @Route("/sessions/{sessionId}/conference", "POST") // @Api(Description="Moves the specified session into a conference room by name") public class ConferenceSession : IReturnVoid, IPost, Codable { /** * The ID of the session that is being moved */ // @ApiMember(Description="The ID of the session that is being moved") public var sessionId:String? /** * The sid of the active call that is on the voice device */ // @ApiMember(Description="The sid of the active call that is on the voice device") public var callSid:String? /** * The name of the conference room */ // @ApiMember(Description="The name of the conference room") public var queueName:String? required public init(){} }