Class OptionBuilder

OptionBuilder

SelectSingleSelectMultiple のオプションを作成するためのビルダー。

var cc = DataStudioApp.createCommunityConnector();
var config = cc.getConfig();

var option1 = config.newOptionBuilder()
  .setLabel("option label")
  .setValue("option_value");

var option2 = config.newOptionBuilder()
  .setLabel("second option label")
  .setValue("option_value_2");

var info1 = config.newSelectSingle()
  .setId("api_endpoint")
  .setName("Data Type")
  .setHelpText("Select the data type you're interested in.")
  .addOption(option1)
  .addOption(option2);

メソッド

メソッド戻り値の型概要
setLabel(label)OptionBuilderこのオプション ビルダーのラベルを設定します。
setValue(value)OptionBuilderこのオプション ビルダーの値を設定します。

詳細なドキュメント

setLabel(label)

このオプション ビルダーのラベルを設定します。ラベルとは、スペースの選択時にユーザーに表示されるテキストです。 プルダウンから 1 つ以上のオプションを選択します。

パラメータ

名前説明
labelString設定するラベル。

戻る

OptionBuilder - チェーン用のビルダー。


setValue(value)

このオプション ビルダーの値を設定します。値はユーザーが実行時にコードに渡す プルダウンから 1 つ以上のオプションを選択します。

パラメータ

名前説明
valueString設定する値。

戻る

OptionBuilder - チェーン用のビルダー。