Class ConferenceParameter

  • A ConferenceParameter is a solution-specific parameter for add-ons that is persisted with conference data.

  • ConferenceParameters can be updated or deleted and are passed to the add-on for these operations.

  • The setKey method sets the key of the ConferenceParameter, with a maximum length of 50 characters.

  • The setValue method sets the value of the ConferenceParameter, with a maximum length of 1024 characters.

  • Both setKey and setValue methods return the ConferenceParameter object for chaining.

ConferenceParameter

Solution-specific parameter available fo the add-on's use. This parameter is persisted with the conference data and, if an update or delete is needed, is passed to the add-on. Example usage:

constconferenceParameter=ConferenceDataService.newConferenceParameter()
.setKey('meetingId')
.setValue('123456');

Methods

MethodReturn typeBrief description
setKey(key) ConferenceParameter Sets the key of this ConferenceParameter .
setValue(value) ConferenceParameter Sets the value of this ConferenceParameter .

Detailed documentation

setKey(key)

Sets the key of this ConferenceParameter . The maximum length for this field is 50 characters. Required.

Parameters

NameTypeDescription
keyStringThe key to set.

Return

ConferenceParameter — this object, for chaining

Throws

Error — if the provided key is too long.


setValue(value)

Sets the value of this ConferenceParameter . The maximum length for this field is 1024 characters. Required.

Parameters

NameTypeDescription
valueStringThe value to set.

Return

ConferenceParameter — this object, for chaining

Throws

Error — if the provided value is too long.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024年12月02日 UTC.