Class: Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#keyString

The key of the parameter. Maximum 50 characters long. Required. Corresponds to the JSON property key

Returns:

  • (String)


4656
4657
4658
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4656

def key
  @key
end

#valueString

The value of the parameter. Maximum 1024 characters long. Required. Corresponds to the JSON property value

Returns:

  • (String)


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