GoogleCloudDataplexV1DataQualitySpecPostScanActions.fromJson constructor

GoogleCloudDataplexV1DataQualitySpecPostScanActions.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1DataQualitySpecPostScanActions.fromJson(core.Map json_)
  : this(
      bigqueryExport:
          json_.containsKey('bigqueryExport')
              ? GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport.fromJson(
                json_['bigqueryExport']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      notificationReport:
          json_.containsKey('notificationReport')
              ? GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport.fromJson(
                json_['notificationReport']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );