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
159 160 161 |
# File 'generated/google/apis/script_v1/classes.rb', line 159 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
157 158 159 |
# File 'generated/google/apis/script_v1/classes.rb', line 157 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
164 165 166 |
# File 'generated/google/apis/script_v1/classes.rb', line 164 def update!(**args) @results = args[:results] if args.key?(:results) end |