Class: Google::Apis::CloudsearchV1::AddOnFrameStartingState

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

Starting state for an individual add-on frame.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AddOnFrameStartingState

Returns a new instance of AddOnFrameStartingState.



234
235
236
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 234

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#additional_dataString

Additional data internal to the add-on that can be used to initialize itself. Corresponds to the JSON property additionalData

Returns:

  • (String)


227
228
229
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 227

def additional_data
  @additional_data
end

#uriString

The uri of the artifact being used for an add-on co-activity. Corresponds to the JSON property uri

Returns:

  • (String)


232
233
234
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 232

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



239
240
241
242
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 239

def update!(**args)
  @additional_data = args[:additional_data] if args.key?(:additional_data)
  @uri = args[:uri] if args.key?(:uri)
end