DataExecutionStatus class

The data execution status.

A data execution is created to sync a data source object with the latest data from a DataSource. It is usually scheduled to run at background, you can check its state to tell if an execution completes There are several scenarios where a data execution is triggered to run: * Adding a data source creates an associated data source sheet as well as a data execution to sync the data from the data source to the sheet. * Updating a data source creates a data execution to refresh the associated data source sheet similarly. * You can send refresh request to explicitly refresh one or multiple data source objects.

Constructors

DataExecutionStatus({String? errorCode, String? errorMessage, String? lastRefreshTime, String? state})
DataExecutionStatus.fromJson(Map json_)

Properties

errorCode String?
The error code. Possible string values are:
getter/setter pair
errorMessage String?
The error message, which may be empty.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
lastRefreshTime String?
Gets the time the data last successfully refreshed.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
state String?
The state of the data execution. Possible string values are:
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited