Class: Google::Apis::ScriptV1::JoinAsyncResponse
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::JoinAsyncResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
generated/google/apis/script_v1/representations.rb,
generated/google/apis/script_v1/representations.rb
Overview
An object that provides the return value for the JoinAsync method.
Instance Attribute Summary collapse
-
#results ⇒ Hash<String,Google::Apis::ScriptV1::Operation>
The return values for each script function, in a map of operation resource names to the Operation containing the result of the process.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JoinAsyncResponse
constructor
A new instance of JoinAsyncResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JoinAsyncResponse
Returns a new instance of JoinAsyncResponse
317 318 319 |
# File 'generated/google/apis/script_v1/classes.rb', line 317 def initialize(**args) update!(**args) end |
Instance Attribute Details
#results ⇒ Hash<String,Google::Apis::ScriptV1::Operation>
The return values for each script function, in a map of operation resource
names to the Operation containing the result of the process. The response
will contain either an error or the result of the script function.
Corresponds to the JSON property results
315 316 317 |
# File 'generated/google/apis/script_v1/classes.rb', line 315 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
322 323 324 |
# File 'generated/google/apis/script_v1/classes.rb', line 322 def update!(**args) @results = args[:results] if args.key?(:results) end |