GoogleCloudDataplexV1ListDataScansResponse.fromJson constructor

GoogleCloudDataplexV1ListDataScansResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1ListDataScansResponse.fromJson(core.Map json_)
    : this(
        dataScans: json_.containsKey('dataScans')
            ? (json_['dataScans'] as core.List)
                .map((value) => GoogleCloudDataplexV1DataScan.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        unreachable: json_.containsKey('unreachable')
            ? (json_['unreachable'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );