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
98 99 100 |
# File 'generated/google/apis/script_v1/classes.rb', line 98 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
96 97 98 |
# File 'generated/google/apis/script_v1/classes.rb', line 96 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
103 104 105 |
# File 'generated/google/apis/script_v1/classes.rb', line 103 def update!(**args) @results = args[:results] if args.key?(:results) end |