Class: Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Solution-specific parameters that are persisted with the event data and, if an
update or delete is needed, are passed to the add-on. For example: [
key: '
sessionKey', value: '123',
key: 'meetingId', value: '456']
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the parameter.
-
#value ⇒ String
The value of the parameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter
constructor
A new instance of AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter
Returns a new instance of AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter.
4605 4606 4607 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4605 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The key of the parameter. Maximum 50 characters long. Required.
Corresponds to the JSON property key
4598 4599 4600 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4598 def key @key end |
#value ⇒ String
The value of the parameter. Maximum 1024 characters long. Required.
Corresponds to the JSON property value
4603 4604 4605 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4603 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4610 4611 4612 4613 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4610 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |