Interface UpdatedCoHostOptions

interface UpdatedCoHostOptions {
    coHost: string;
    coHostResponsibility: CoHostResponsibility[];
    showAlert?: ShowAlert;
    eventType: EventType;
    islevel: string;
    member: string;
    youAreCoHost: boolean;
    updateCoHost: ((coHost: string) => void);
    updateCoHostResponsibility: ((responsibility: CoHostResponsibility[]) => void);
    updateYouAreCoHost: ((youAreCoHost: boolean) => void);
}

Properties

coHost: string
coHostResponsibility: CoHostResponsibility[]
showAlert?: ShowAlert
eventType: EventType
islevel: string
member: string
youAreCoHost: boolean
updateCoHost: ((coHost: string) => void)
updateCoHostResponsibility: ((responsibility: CoHostResponsibility[]) => void)
updateYouAreCoHost: ((youAreCoHost: boolean) => void)