Class ConferenceDataService
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
회의데이터서비스
스크립트에서 회의 정보를 만들 때 사용할 수 있는 서비스입니다.
자세한 문서
newConferenceDataBuilder()
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(UTC)"],[[["\u003cp\u003eThe ConferenceDataService is a service that allows scripts to create conferencing information.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to create various conference-related objects like ConferenceDataBuilder, ConferenceError, ConferenceParameter, and EntryPoint.\u003c/p\u003e\n"],["\u003cp\u003eEach of these methods returns a new, empty instance of the respective object, allowing developers to populate them with relevant data.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use properties like ConferenceErrorType, EntryPointFeature, and EntryPointType for detailed conference configurations.\u003c/p\u003e\n"],["\u003cp\u003eThis service enables scripting functionalities to manage and manipulate conference data within Apps Script.\u003c/p\u003e\n"]]],["The `ConferenceDataService` allows scripts to manage conferencing information. It features properties like `ConferenceErrorType`, `EntryPointFeature`, and `EntryPointType`. Key actions involve creating new instances: `newConferenceDataBuilder()` generates an empty `ConferenceDataBuilder`, `newConferenceError()` produces an empty `ConferenceError`, `newConferenceParameter()` returns an empty `ConferenceParameter`, and `newEntryPoint()` provides a blank `EntryPoint`. These methods facilitate the construction of conference data components, each starting as an empty object.\n"],null,["# Class ConferenceDataService\n\nConferenceDataService\n\nService that scripts can use to create conferencing information. \n\n### Properties\n\n| Property | Type | Description |\n|---------------------------|-------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|\n| `Conference``Error``Type` | [ConferenceErrorType](/apps-script/reference/conference-data/conference-error-type) | The [ConferenceErrorType](/apps-script/reference/conference-data/conference-error-type) enumeration. |\n| `Entry``Point``Feature` | [EntryPointFeature](/apps-script/reference/conference-data/entry-point-feature) | The [EntryPointFeature](/apps-script/reference/conference-data/entry-point-feature) enumeration. |\n| `Entry``Point``Type` | [EntryPointType](/apps-script/reference/conference-data/entry-point-type) | The [EntryPointType](/apps-script/reference/conference-data/entry-point-type) enumeration. |\n\n### Methods\n\n| Method | Return type | Brief description |\n|-----------------------------------------------------------|-----------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|\n| [newConferenceDataBuilder()](#newConferenceDataBuilder()) | [ConferenceDataBuilder](/apps-script/reference/conference-data/conference-data-builder) | Returns a new, empty [ConferenceDataBuilder](/apps-script/reference/conference-data/conference-data-builder). |\n| [newConferenceError()](#newConferenceError()) | [ConferenceError](/apps-script/reference/conference-data/conference-error) | Returns a new, empty [ConferenceError](/apps-script/reference/conference-data/conference-error). |\n| [newConferenceParameter()](#newConferenceParameter()) | [ConferenceParameter](/apps-script/reference/conference-data/conference-parameter) | Returns a new, empty [ConferenceParameter](/apps-script/reference/conference-data/conference-parameter). |\n| [newEntryPoint()](#newEntryPoint()) | [EntryPoint](/apps-script/reference/conference-data/entry-point) | Returns a new, empty [EntryPoint](/apps-script/reference/conference-data/entry-point). |\n\nDetailed documentation\n----------------------\n\n### `new``Conference``Data``Builder()`\n\nReturns a new, empty [ConferenceDataBuilder](/apps-script/reference/conference-data/conference-data-builder).\n\n#### Return\n\n\n[ConferenceDataBuilder](/apps-script/reference/conference-data/conference-data-builder) --- a new, empty [ConferenceDataBuilder](/apps-script/reference/conference-data/conference-data-builder)\n\n*** ** * ** ***\n\n### `new``Conference``Error()`\n\nReturns a new, empty [ConferenceError](/apps-script/reference/conference-data/conference-error).\n\n#### Return\n\n\n[ConferenceError](/apps-script/reference/conference-data/conference-error) --- a new, empty [ConferenceError](/apps-script/reference/conference-data/conference-error)\n\n*** ** * ** ***\n\n### `new``Conference``Parameter()`\n\nReturns a new, empty [ConferenceParameter](/apps-script/reference/conference-data/conference-parameter).\n\n#### Return\n\n\n[ConferenceParameter](/apps-script/reference/conference-data/conference-parameter) --- a new, empty [ConferenceParameter](/apps-script/reference/conference-data/conference-parameter)\n\n*** ** * ** ***\n\n### `new``Entry``Point()`\n\nReturns a new, empty [EntryPoint](/apps-script/reference/conference-data/entry-point).\n\n#### Return\n\n\n[EntryPoint](/apps-script/reference/conference-data/entry-point) --- a new, empty [EntryPoint](/apps-script/reference/conference-data/entry-point)"]]