GoogleCloudDatapipelinesV1ListJobsResponse.fromJson constructor
GoogleCloudDatapipelinesV1ListJobsResponse.fromJson(
- Map json_
Implementation
GoogleCloudDatapipelinesV1ListJobsResponse.fromJson(core.Map json_)
: this(
jobs: (json_['jobs'] as core.List?)
?.map((value) => GoogleCloudDatapipelinesV1Job.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);