toJson method
Implementation
Map<String, dynamic> toJson() {
return {
if (saveExecutionProgress != null) 'saveExecutionProgress': saveExecutionProgress,
if (saveManualExecutions != null) 'saveManualExecutions': saveManualExecutions,
if (saveDataErrorExecution != null) 'saveDataErrorExecution': saveDataErrorExecution,
if (saveDataSuccessExecution != null) 'saveDataSuccessExecution': saveDataSuccessExecution,
if (executionTimeout != null) 'executionTimeout': executionTimeout,
if (timezone != null) 'timezone': timezone,
if (errorWorkflow != null) 'errorWorkflow': errorWorkflow,
if (callerPolicy != null) 'callerPolicy': callerPolicy,
if (callerIds != null) 'callerIds': callerIds,
};
}