구성의 정보 데이터를 포함합니다. 속성에 따라 데이터 스튜디오에 정보가 표시되는 방식이 결정됩니다.
constcc=DataStudioApp.createCommunityConnector();constconfig=cc.getConfig();constinfo1=config.newInfo().setId('info1').setText('This text gives some context on the configuration.');
[[["이해하기 쉬움","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)"],[[["\u003cp\u003eThe \u003ccode\u003eInfo\u003c/code\u003e object stores configuration data that influences how information is displayed in Data Studio.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can utilize the \u003ccode\u003esetId\u003c/code\u003e and \u003ccode\u003esetText\u003c/code\u003e methods to define the unique identifier and descriptive text for a configuration entry within the \u003ccode\u003eInfo\u003c/code\u003e object.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eInfo\u003c/code\u003e object uses a builder pattern, allowing developers to chain methods together for streamlined configuration.\u003c/p\u003e\n"]]],["The `Info` object, part of a Data Studio Community Connector configuration, displays information. `setId(id)` assigns a unique string ID, crucial for identifying the configuration entry. `setText(text)` sets the string text content to be displayed. Both methods return the `Info` object itself, allowing for method chaining. These actions allow for defining and displaying context within the Data Studio configuration.\n"],null,["Info\n\nContains info data for the config. Its properties determine how the info is displayed in Data\nStudio.\n\n```javascript\nconst cc = DataStudioApp.createCommunityConnector();\nconst config = cc.getConfig();\n\nconst info1 = config.newInfo().setId('info1').setText(\n 'This text gives some context on the configuration.');\n``` \n\nMethods\n\n| Method | Return type | Brief description |\n|-----------------------------------|-------------|--------------------------------------------------|\n| [setId(id)](#setId(String)) | [Info](#) | Sets the unique ID for this configuration entry. |\n| [setText(text)](#setText(String)) | [Info](#) | Sets the text for this configuration entry. |\n\nDetailed documentation \n\n`set``Id(id)` \nSets the unique ID for this configuration entry.\n\nParameters\n\n| Name | Type | Description |\n|------|----------|----------------|\n| `id` | `String` | The ID to set. |\n\nReturn\n\n\n[Info](#) --- This builder, for chaining.\n\n*** ** * ** ***\n\n`set``Text(text)` \nSets the text for this configuration entry.\n\nParameters\n\n| Name | Type | Description |\n|--------|----------|------------------|\n| `text` | `String` | The text to set. |\n\nReturn\n\n\n[Info](#) --- This builder, for chaining."]]