AI-generated Key Takeaways
-
ConferenceParameter
objects store solution-specific parameters for add-ons, persisting with conference data and utilized for updates or deletions. -
Developers can use the
setKey(key)
method to assign a key (up to 50 characters) andsetValue(value)
to assign a value (up to 1024 characters) to these parameters. -
Both
setKey
andsetValue
methods return theConferenceParameter
object, allowing for chained method calls for efficient setup. -
Exceeding the maximum length for keys or values when using
setKey(key)
orsetValue(value)
will result in an error.
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:
const conferenceParameter = ConferenceDataService.newConferenceParameter() .setKey('meetingId') .setValue('123456');
Methods
Method | Return type | Brief description |
---|---|---|
set | Conference | Sets the key of this Conference . |
set | Conference | Sets the value of this Conference . |
Detailed documentation
setKey(key)
Sets the key of this Conference
. The maximum length for this field is 50
characters. Required.
Parameters
Name | Type | Description |
---|---|---|
key | String | The key to set. |
Return
Conference
— this object, for chaining
Throws
Error
— if the provided key is too long.
setValue(value)
Sets the value of this Conference
. The maximum length for this field is 1024
characters. Required.
Parameters
Name | Type | Description |
---|---|---|
value | String | The value to set. |
Return
Conference
— this object, for chaining
Throws
Error
— if the provided value is too long.