Interface ConferenceInvite

interface ConferenceInvite {
    context: Record<string, string> & {
        contextInfo?: Record<string, string>;
    };
    from: string;
    fromDetails: {
        contactName: string;
        displayName: string;
        username: string;
    };
    id: string;
    mediaTypes: MediaTypes;
}

Properties

context: Record<string, string> & {
    contextInfo?: Record<string, string>;
}

Type declaration

  • Optional contextInfo?: Record<string, string>
from: string
fromDetails: {
    contactName: string;
    displayName: string;
    username: string;
}

Type declaration

  • Readonly contactName: string
  • Readonly displayName: string
  • Readonly username: string
id: string
mediaTypes: MediaTypes