Google Apps Script API
    Preparing search index...

    Error that occurred in a conferencing add-on. Example usage:

    var conferenceError = ConferenceDataService.newConferenceError()
        .setConferenceErrorType(ConferenceErrorType.PERMANENT);
    
    var state = ScriptApp.newStateToken()
        .withMethod('myLoginCallbackFunction');
        .withTimeout(3600)
        .createToken();
    
    var authenticationUrl = 'https://script.google.com/a/google.com/d/'
        + ScriptApp.getScriptId()
        + '/usercallback?state='
        + state;
    
    var conferenceError = ConferenceDataService.newConferenceError()
        .setConferenceErrorType(ConferenceErrorType.UNAUTHENTICATED)
        .setAuthenticationUrl(authenticationUrl);
    
    interface ConferenceError {
        setAuthenticationUrl(authenticationUrl: string): ConferenceError;
        setConferenceErrorType(
            conferenceErrorType: ConferenceErrorType,
        ): ConferenceError;
    }
    Index

    Methods