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.
4663 4664 4665 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4663 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
4656 4657 4658 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4656 def key @key end |
#value ⇒ String
The value of the parameter. Maximum 1024 characters long. Required.
Corresponds to the JSON property value
4661 4662 4663 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4661 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4668 4669 4670 4671 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4668 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |