/* Options:
Date: 2025-05-04 22:12:00
Version: 8.71
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://team.evovoice.io
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: UpdateConferenceMemberStatus.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Sessions;
namespace Voice.Api.Sessions
{
///
///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 partial class UpdateConferenceMemberStatus
: IReturnVoid
{
///
///The ID of the active session
///
[ApiMember(Description="The ID of the active session")]
public virtual string SessionId { get; set; }
///
///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 virtual string CallSid { get; set; }
///
///Hold?
///
[ApiMember(Description="Hold?")]
public virtual bool? Hold { get; set; }
///
///Mute?
///
[ApiMember(Description="Mute?")]
public virtual bool? Mute { get; set; }
}
}