Value
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
JSON 表現 |
{
// Union field value can be only one of the following:
"booleanValue": boolean,
"stringValue": string,
"stringSetValue": {
object (StringSet )
}
// End of list of possible types for union field value .
} |
フィールド |
共用体フィールド value 。データ型と関連する値を選択します。value は次のいずれかになります。 |
booleanValue |
boolean
この値をブール値として定義します。
|
stringValue |
string
この値を文字列値として定義します。
|
stringSetValue |
object (StringSet )
この値を StringSet として定義します。
|
StringSet
文字列のセットを保持できる文字列セット値。各文字列の最大長は 60 文字で、文字列セットには最大 50 個の文字列を含めることができます。
JSON 表現 |
{
"values": [
string
]
} |
フィールド |
values[] |
string
セット内の文字列
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-26 UTC。"],[],["The document outlines data types within a setting value, which can be a boolean, a string, or a StringSet. A StringSet is a collection of strings, each up to 60 characters long, with a maximum of 50 strings per set. The JSON representation for the setting value uses a union field `value` to specify one of these types. The StringSet's JSON uses an array `values` to list the strings.\n"]]