"use strict";
export {};
///
/// To store pass codes of a meeting
///
class ConferencePassCodes {
///
/// - Pass code of the moderator - available if the end-user is the moderator
///
private _moderatorPassCode: string;
///
/// - Pass code of the particpant
///
private _participantPassCode: string;
constructor () {
}
get moderatorPassCode(): string {
return this._moderatorPassCode;
}
set moderatorPassCode(value: string) {
this._moderatorPassCode = value;
}
get participantPassCode(): string {
return this._participantPassCode;
}
set participantPassCode(value: string) {
this._participantPassCode = value;
}
///
/// Serialize this object to String
///
/// as serialization result
public ToString(): string {
return "";
//return $"ModeratorPassCode:[{ModeratorPassCode}] - ParticipantPassCode:[{ParticipantPassCode}]";
}
}
module.exports.ConferencePassCodes = ConferencePassCodes;
export {ConferencePassCodes};