GoogleCloudDataplexV1RunDataScanResponse.fromJson constructor

GoogleCloudDataplexV1RunDataScanResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1RunDataScanResponse.fromJson(core.Map json_)
    : this(
        job: json_.containsKey('job')
            ? GoogleCloudDataplexV1DataScanJob.fromJson(
                json_['job'] as core.Map<core.String, core.dynamic>)
            : null,
      );