interface Invite {
    context: Record<string, string> & {
        contextInfo?: Record<string, string>;
    };
    from: string;
    fromDetails: InviteFromDetails;
    id: string;
    mediatypes: MediaTypes;
}

Properties

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

Type declaration

  • Optional contextInfo?: Record<string, string>
from: string
fromDetails: InviteFromDetails
id: string
mediatypes: MediaTypes