public final class Operation
extends com.google.api.client.json.GenericJson
This is the Java data model class that specifies how to parse/serialize into the JSON that is transmitted over HTTP when working with the Apps Script API. For a detailed explanation see: https://developers.google.com/api-client-library/java/google-http-java-client/json
com.google.api.client.util.GenericData.Flags| Constructor and Description |
|---|
Operation() |
| Modifier and Type | Method and Description |
|---|---|
Operation |
clone() |
java.lang.Boolean |
getDone()
This field indicates whether the script execution has completed.
|
Status |
getError()
If a `run` call succeeds but the script function (or Apps Script itself) throws an exception,
this field contains a Status object.
|
java.util.Map<java.lang.String,java.lang.Object> |
getResponse()
If the script function returns successfully, this field contains an ExecutionResponse object
with the function's return value.
|
Operation |
set(java.lang.String fieldName,
java.lang.Object value) |
Operation |
setDone(java.lang.Boolean done)
This field indicates whether the script execution has completed.
|
Operation |
setError(Status error)
If a `run` call succeeds but the script function (or Apps Script itself) throws an exception,
this field contains a Status object.
|
Operation |
setResponse(java.util.Map<java.lang.String,java.lang.Object> response)
If the script function returns successfully, this field contains an ExecutionResponse object
with the function's return value.
|
getFactory, setFactory, toPrettyString, toStringentrySet, get, getClassInfo, getUnknownKeys, put, putAll, remove, setUnknownKeysclear, containsKey, containsValue, equals, hashCode, isEmpty, keySet, size, valuespublic java.lang.Boolean getDone()
null for nonepublic Operation setDone(java.lang.Boolean done)
done - done or null for nonepublic Status getError()
null for nonepublic Operation setError(Status error)
error - error or null for nonepublic java.util.Map<java.lang.String,java.lang.Object> getResponse()
null for nonepublic Operation setResponse(java.util.Map<java.lang.String,java.lang.Object> response)
response - response or null for nonepublic Operation set(java.lang.String fieldName, java.lang.Object value)
set in class com.google.api.client.json.GenericJsonpublic Operation clone()
clone in class com.google.api.client.json.GenericJson