GetNotebookExecutionJobRequest.fromJson constructor
Implementation
factory GetNotebookExecutionJobRequest.fromJson(Map<String, dynamic> json) {
return GetNotebookExecutionJobRequest(
name: json['name'] ?? '',
view:
decodeEnum(json['view'], NotebookExecutionJobView.fromJson) ??
NotebookExecutionJobView.$default,
);
}