GoogleApi.Script.V1.Model.ExecutionResponse (google_api_script v0.19.0)
View SourceAn 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.
Attributes
-
result
(type:any()
, default:nil
) - 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 aDocument
or aCalendar
); they can only return primitive types such as astring
,number
,array
,object
, orboolean
.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Script.V1.Model.ExecutionResponse{result: any() | nil}