ListNotebookRuntimeTemplatesRequest.fromJson constructor

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

Implementation

factory ListNotebookRuntimeTemplatesRequest.fromJson(
  Map<String, dynamic> json,
) {
  return ListNotebookRuntimeTemplatesRequest(
    parent: json['parent'] ?? '',
    filter: json['filter'] ?? '',
    pageSize: json['pageSize'] ?? 0,
    pageToken: json['pageToken'] ?? '',
    readMask: decodeCustom(json['readMask'], protobuf.FieldMask.fromJson),
    orderBy: json['orderBy'] ?? '',
  );
}