Interface ConferenceLogInviteDto

interface ConferenceLogInviteDto {
    candidates: readonly {
        address: string;
        endReason: 200 | 404 | 487 | 603;
    }[];
    error: 200 | 404 | 487 | 603;
    from: string;
    group: boolean;
    id: string;
    inviteRequest: false;
    mediatypes: {
        audio: boolean;
        video: boolean;
    };
    state: "ACCEPTED" | "DECLINED_BY_CREATOR" | "DECLINED_BY_TIMEOUT" | "DECLINED";
    to: string;
}

Properties

candidates: readonly {
    address: string;
    endReason: 200 | 404 | 487 | 603;
}[]
error: 200 | 404 | 487 | 603
from: string
group: boolean
id: string
inviteRequest: false
mediatypes: {
    audio: boolean;
    video: boolean;
}

Type declaration

  • audio: boolean
  • video: boolean
state: "ACCEPTED" | "DECLINED_BY_CREATOR" | "DECLINED_BY_TIMEOUT" | "DECLINED"
to: string