GetAutomationExecutionResult.fromJson constructor

GetAutomationExecutionResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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