Interface MeetingEndedOptions

interface MeetingEndedOptions {
    showAlert?: ShowAlert;
    redirectURL?: string;
    onWeb: boolean;
    eventType: EventType;
    updateValidated?: ((isValid: boolean) => void);
}

Properties

showAlert?: ShowAlert
redirectURL?: string
onWeb: boolean
eventType: EventType
updateValidated?: ((isValid: boolean) => void)