interface Invite {
    candidates: readonly Candidate[];
    error: 487 | 603 | 200 | 404 | 408;
    from: string;
    group: boolean;
    inviteRequest: boolean;
    mediatypes: MediaType;
    state: "ACCEPTED" | "DECLINED_BY_CREATOR" | "DECLINED_BY_TIMEOUT" | "DECLINED";
    to: string;
}

Properties

candidates: readonly Candidate[]

List of candidates that received the invite

error: 487 | 603 | 200 | 404 | 408

Code error when an invite is declined

from: string

who sent the invite

group: boolean

Set to true when the invite is sent to a group

inviteRequest: boolean

Set to true when the invite is related with an invitation request

mediatypes: MediaType

Indicates the media used in the conference

state: "ACCEPTED" | "DECLINED_BY_CREATOR" | "DECLINED_BY_TIMEOUT" | "DECLINED"

specify what happened with the invite

to: string

who received the invite

Generated using TypeDoc