DescribeJobExecutionResponse.fromJson constructor

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

Implementation

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