Class: Google::Apis::ScriptV1::ExecutionResponse

Inherits:
Object
  • Object
show all
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 of a function executed using the Apps Script API. If the script function returns successfully, the response body's response field contains this ExecutionResponse object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecutionResponse

Returns a new instance of ExecutionResponse.



336
337
338
# File 'generated/google/apis/script_v1/classes.rb', line 336

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

Instance Attribute Details

#resultObject

The return value of the script function. The type matches the object type returned in Apps Script. Functions called using the Apps Script API cannot return Apps Script-specific objects (such as a Document or a Calendar); they can only return primitive types such as a string, number, array, object, or boolean. Corresponds to the JSON property result

Returns:

  • (Object)


334
335
336
# File 'generated/google/apis/script_v1/classes.rb', line 334

def result
  @result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



341
342
343
# File 'generated/google/apis/script_v1/classes.rb', line 341

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