CreateNotebookExecutionJobRequest.fromJson constructor

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

Implementation

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