Conexia Telecom SDK
    Preparing search index...

    Type Alias Conference

    Represents a conference call.

    type Conference = {
        isDynamic: boolean;
        name: string;
        number: string;
        participants: Map<string, ConferenceParticipant>;
        uid: string;
    }
    Index
    isDynamic: boolean

    Indicates wheter the conference is dynamic.

    name: string

    Conference name.

    number: string

    Conference number.

    participants: Map<string, ConferenceParticipant>

    Conference participants.

    uid: string

    Unique identifier of conference call.