/* Options: Date: 2025-05-05 00:00:52 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: UpdateConferenceMemberStatus.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Sets the conference member's hold and or mute status. */ // @Route("/sessions/{sessionId}/conference/members/{callSid}", "PATCH") // @Api(Description="Sets the conference member's hold and or mute status.") public class UpdateConferenceMemberStatus : IReturnVoid, Codable { /** * The ID of the active session */ // @ApiMember(Description="The ID of the active session") 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? /** * Hold? */ // @ApiMember(Description="Hold?") public var hold:Bool? /** * Mute? */ // @ApiMember(Description="Mute?") public var mute:Bool? required public init(){} }