Class: Google::Apis::CloudsearchV1::AddOnFrameStartingState
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AddOnFrameStartingState
- 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
-
#additional_data ⇒ String
Additional data internal to the add-on that can be used to initialize itself.
-
#uri ⇒ String
The uri of the artifact being used for an add-on co-activity.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddOnFrameStartingState
constructor
A new instance of AddOnFrameStartingState.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_data ⇒ String
Additional data internal to the add-on that can be used to initialize itself.
Corresponds to the JSON property additionalData
227 228 229 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 227 def additional_data @additional_data end |
#uri ⇒ String
The uri of the artifact being used for an add-on co-activity.
Corresponds to the JSON property uri
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 |