The meeting information interface.

interface MeetingInfo {
    customerKey: string;
    encryptionType: "None" | "AES ECB" | "AES GCM";
    inviteEmail: string;
    isInMeeting: boolean;
    lang: string;
    meetingId: string;
    meetingNumber: number;
    meetingTopic: string;
    network: string;
    participantId: number;
    password: string;
    recordingInfo: RecordingInfo;
    region: string;
    telPwd: string;
    userEmail: string;
    userId: number;
    userName: string;
    webEndpoint: string;
}

Properties

customerKey: string

The user's customer key.

encryptionType: "None" | "AES ECB" | "AES GCM"

The encryption type of the meeting.

inviteEmail: string

The meeting invite email key.

isInMeeting: boolean

Whether the user is in the meeting.

lang: string

The language for the SDK.

meetingId: string

The Zoom meeting UUID.

meetingNumber: number

The meeting number.

meetingTopic: string

The topic of the meeting.

network: string

The server network.

participantId: number

The participant ID.

password: string

The meeting password, if it exists.

recordingInfo: RecordingInfo

Recording information.

region: string

The server region.

telPwd: string

The meeting telephone password, if it exists.

userEmail: string

The user's email address.

userId: number

The user's ID.

userName: string

The user's name.

webEndpoint: string

The web endpoint.