Class ConferenceData
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Dadosda conferência
Contêiner para todas as informações relacionadas à conferência.
let conferenceId;
// Set the conference ID, that is, the identifier your system creates for the
// meeting.
const entryPoint = ConferenceDataService.newEntryPoint();
// Finish building the entry point ...
const conferenceParameter = ConferenceDataService.newConferenceParameter();
// Finish building the parameter ...
const conferenceData = ConferenceDataService.newConferenceDataBuilder()
.setConferenceId(conferenceId)
.addEntryPoint(entryPoint)
.addConferenceParameter(conferenceParameter)
.build();
Métodos
Método | Tipo de retorno | Breve descrição |
printJson() | String | Mostra a representação JSON desse objeto. |
Documentação detalhada
printJson()
Mostra a representação JSON desse objeto. Isso é apenas para depuração.
Retornar
String
Exceto em caso de indicação contrária, o conteúdo desta página é licenciado de acordo com a Licença de atribuição 4.0 do Creative Commons, e as amostras de código são licenciadas de acordo com a Licença Apache 2.0. Para mais detalhes, consulte as políticas do site do Google Developers. Java é uma marca registrada da Oracle e/ou afiliadas.
Última atualização 2025-07-26 UTC.
[null,null,["Última atualização 2025-07-26 UTC."],[[["\u003cp\u003e\u003ccode\u003eConferenceData\u003c/code\u003e objects store all conference-related information, including ID, entry points, and parameters.\u003c/p\u003e\n"],["\u003cp\u003eYou can create a \u003ccode\u003eConferenceData\u003c/code\u003e object using a builder pattern, setting properties like conference ID, entry points, and parameters.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eprintJson()\u003c/code\u003e method provides a JSON representation of the \u003ccode\u003eConferenceData\u003c/code\u003e object, useful for debugging purposes.\u003c/p\u003e\n"]]],["The `ConferenceData` container holds all meeting-related details. A unique `conferenceId` is set, and an `entryPoint` and `conferenceParameter` are created and added. The `ConferenceData` is built using `ConferenceDataService`. The `printJson()` method, which returns a `String`, provides a JSON representation of the object for debugging purposes. The core process involves creating an identifier and constructing the necessary conference information elements.\n"],null,["# Class ConferenceData\n\nConferenceData\n\nContainer for all conference-related information.\n\n```javascript\nlet conferenceId;\n// Set the conference ID, that is, the identifier your system creates for the\n// meeting.\n\nconst entryPoint = ConferenceDataService.newEntryPoint();\n// Finish building the entry point ...\n\nconst conferenceParameter = ConferenceDataService.newConferenceParameter();\n// Finish building the parameter ...\n\nconst conferenceData = ConferenceDataService.newConferenceDataBuilder()\n .setConferenceId(conferenceId)\n .addEntryPoint(entryPoint)\n .addConferenceParameter(conferenceParameter)\n .build();\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|-----------------------------|-------------|------------------------------------------------|\n| [printJson()](#printJson()) | `String` | Prints the JSON representation of this object. |\n\nDetailed documentation\n----------------------\n\n### `print``Json()`\n\nPrints the JSON representation of this object. This is for debugging only.\n\n#### Return\n\n\n`String`"]]