GoogleCloudDataplexV1DataProfileResult.fromJson constructor

GoogleCloudDataplexV1DataProfileResult.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1DataProfileResult.fromJson(core.Map json_)
  : this(
      catalogPublishingStatus: json_.containsKey('catalogPublishingStatus')
          ? GoogleCloudDataplexV1DataScanCatalogPublishingStatus.fromJson(
              json_['catalogPublishingStatus']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      postScanActionsResult: json_.containsKey('postScanActionsResult')
          ? GoogleCloudDataplexV1DataProfileResultPostScanActionsResult.fromJson(
              json_['postScanActionsResult']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      profile: json_.containsKey('profile')
          ? GoogleCloudDataplexV1DataProfileResultProfile.fromJson(
              json_['profile'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      rowCount: json_['rowCount'] as core.String?,
      scannedData: json_.containsKey('scannedData')
          ? GoogleCloudDataplexV1ScannedData.fromJson(
              json_['scannedData'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );