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