CreateNotebookExecutionJobRequest.fromJson constructor
Implementation
factory CreateNotebookExecutionJobRequest.fromJson(
Map<String, dynamic> json,
) {
return CreateNotebookExecutionJobRequest(
parent: json['parent'] ?? '',
notebookExecutionJob: decode(
json['notebookExecutionJob'],
NotebookExecutionJob.fromJson,
),
notebookExecutionJobId: json['notebookExecutionJobId'] ?? '',
);
}