Google Apps Script API
    Preparing search index...

    Solution-specific parameter available fo the add-on's use. This parameter is persisted with the conference data and, if an update or delete is needed, is passed to the add-on. Example usage:

    var conferenceParameter = ConferenceDataService.newConferenceParameter()
        .setKey('meetingId')
        .setValue('123456');
    
    interface ConferenceParameter {
        setKey(key: string): ConferenceParameter;
        setValue(value: string): ConferenceParameter;
    }
    Index

    Methods