toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clientId = this.clientId;
final ignoreErrorIfNoActiveWorkflow = this.ignoreErrorIfNoActiveWorkflow;
final parameters = this.parameters;
final priority = this.priority;
final quotaRetryCount = this.quotaRetryCount;
final requestId = this.requestId;
final resourceName = this.resourceName;
final scheduledTime = this.scheduledTime;
final testMode = this.testMode;
final triggerId = this.triggerId;
final userGeneratedExecutionId = this.userGeneratedExecutionId;
final workflowName = this.workflowName;
return {
'clientId': ?clientId,
'ignoreErrorIfNoActiveWorkflow': ?ignoreErrorIfNoActiveWorkflow,
'parameters': ?parameters,
'priority': ?priority,
'quotaRetryCount': ?quotaRetryCount,
'requestId': ?requestId,
'resourceName': ?resourceName,
'scheduledTime': ?scheduledTime,
'testMode': ?testMode,
'triggerId': ?triggerId,
'userGeneratedExecutionId': ?userGeneratedExecutionId,
'workflowName': ?workflowName,
};
}