GetAutomationExecutionResult.fromJson constructor
Implementation
factory GetAutomationExecutionResult.fromJson(Map<String, dynamic> json) {
return GetAutomationExecutionResult(
automationExecution: json['AutomationExecution'] != null
? AutomationExecution.fromJson(
json['AutomationExecution'] as Map<String, dynamic>)
: null,
);
}