DescribeNotebookExecutionOutput.fromJson constructor

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

Implementation

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