AssignNotebookRuntimeRequest.fromJson constructor
Implementation
factory AssignNotebookRuntimeRequest.fromJson(Map<String, dynamic> json) {
return AssignNotebookRuntimeRequest(
parent: json['parent'] ?? '',
notebookRuntimeTemplate: json['notebookRuntimeTemplate'] ?? '',
notebookRuntime: decode(
json['notebookRuntime'],
NotebookRuntime.fromJson,
),
notebookRuntimeId: json['notebookRuntimeId'] ?? '',
);
}