Google Apps Script API
    Preparing search index...

    Definition of a specific way to join a conference. Example usage:

    var videoEntryPoint = ConferenceDataService.newEntryPoint()
        .setEntryPointType(ConferenceDataService.EntryPointType.VIDEO)
        .setUri('https://example.com/myroom');
        .setPasscode('12345');
    
    var phoneEntryPoint = ConferenceDataService.newEntryPoint()
        .setEntryPointType(ConferenceDataService.EntryPointType.PHONE)
        .setUri('tel:+11234567890,,,112233445;9687')
        .addFeature(ConferenceDataService.EntryPointFeature.TOLL)
        setPin('9687');
    
    var sipEntryPoint = ConferenceDataService.newEntryPoint()
        .setEntryPointType(ConferenceDataService.EntryPointType.SIP)
        .setUri('sip:joe@example.com')
        .setAccessCode('1234567');
    
    var moreEntryPoint = ConferenceDataService.newEntryPoint()
        .setEntryPointType(ConferenceDataService.EntryPointType.MORE)
        .setUri('https://example.com/moreJoiningInfo');
    
    interface EntryPoint {
        addFeature(
            feature: GoogleAppsScript.Conference_Data.EntryPointFeature,
        ): GoogleAppsScript.Conference_Data.EntryPoint;
        setAccessCode(
            accessCode: string,
        ): GoogleAppsScript.Conference_Data.EntryPoint;
        setEntryPointType(
            entryPointType: GoogleAppsScript.Conference_Data.EntryPointType,
        ): GoogleAppsScript.Conference_Data.EntryPoint;
        setMeetingCode(
            meetingCode: string,
        ): GoogleAppsScript.Conference_Data.EntryPoint;
        setPasscode(passcode: string): GoogleAppsScript.Conference_Data.EntryPoint;
        setPassword(password: string): GoogleAppsScript.Conference_Data.EntryPoint;
        setPin(pin: string): GoogleAppsScript.Conference_Data.EntryPoint;
        setRegionCode(
            regionCode: string,
        ): GoogleAppsScript.Conference_Data.EntryPoint;
        setUri(uri: string): GoogleAppsScript.Conference_Data.EntryPoint;
    }
    Index

    Methods