Google Apps Script API
    Preparing search index...

    Contains checkbox information for the config. Its properties determine how the checkbox is displayed in Data Studio.

    var checkbox = config.newCheckbox()
      .setId("use_https")
      .setName("Use Https?")
      .setHelpText("Whether or not https should be used.")
      .setAllowOverride(true);
    
    interface Checkbox {
        setAllowOverride(allowOverride: boolean): Checkbox;
        setHelpText(helpText: string): Checkbox;
        setId(id: string): Checkbox;
        setIsDynamic(isDynamic: boolean): Checkbox;
        setName(name: string): Checkbox;
    }
    Index

    Methods