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