/* Options: Date: 2025-05-04 22:12:14 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ConferenceSession.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Moves the specified session into a conference room by name */ @Route(Path="/sessions/{sessionId}/conference", Verbs="POST") @Api(Description="Moves the specified session into a conference room by name") public static class ConferenceSession implements IReturnVoid, IPost { /** * The ID of the session that is being moved */ @ApiMember(Description="The ID of the session that is being moved") public String sessionId = null; /** * 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 String callSid = null; /** * The name of the conference room */ @ApiMember(Description="The name of the conference room") public String queueName = null; public String getSessionId() { return sessionId; } public ConferenceSession setSessionId(String value) { this.sessionId = value; return this; } public String getCallSid() { return callSid; } public ConferenceSession setCallSid(String value) { this.callSid = value; return this; } public String getQueueName() { return queueName; } public ConferenceSession setQueueName(String value) { this.queueName = value; return this; } } }