GoogleCloudDataplexV1GenerateDataQualityRulesResponse.fromJson constructor

GoogleCloudDataplexV1GenerateDataQualityRulesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1GenerateDataQualityRulesResponse.fromJson(core.Map json_)
    : this(
        rule: json_.containsKey('rule')
            ? (json_['rule'] as core.List)
                .map((value) => GoogleCloudDataplexV1DataQualityRule.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );