Interface ConferenceLogTransferDto

interface ConferenceLogTransferDto {
    from: string;
    id: string;
    idInvite: string;
    mediatypes: {
        audio: boolean;
        screen: boolean;
        video: boolean;
    };
    roomId: string;
    state: "DECLINED" | "INVITED";
    to: string;
}

Properties

from: string
id: string
idInvite: string
mediatypes: {
    audio: boolean;
    screen: boolean;
    video: boolean;
}

Type declaration

  • audio: boolean
  • screen: boolean
  • video: boolean
roomId: string
state: "DECLINED" | "INVITED"
to: string