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
집합에 포함된 문자열
|
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2023-05-25(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"]],["최종 업데이트: 2023-05-25(UTC)"],[[["This documentation details the structure and types of data that can be stored in a setting value."],["A setting value can hold a boolean, a string, or a set of strings (StringSet)."],["StringSets have limitations: a maximum of 50 strings, with each string having a maximum length of 60 characters."],["The JSON representation for each data type (boolean, string, StringSet) is provided for clarity."]]],["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"]]