GoogleCloudDataplexV1DataQualityRuleResult.fromJson constructor

GoogleCloudDataplexV1DataQualityRuleResult.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1DataQualityRuleResult.fromJson(core.Map json_)
    : this(
        assertionRowCount: json_['assertionRowCount'] as core.String?,
        evaluatedCount: json_['evaluatedCount'] as core.String?,
        failingRowsQuery: json_['failingRowsQuery'] as core.String?,
        nullCount: json_['nullCount'] as core.String?,
        passRatio: (json_['passRatio'] as core.num?)?.toDouble(),
        passed: json_['passed'] as core.bool?,
        passedCount: json_['passedCount'] as core.String?,
        rule: json_.containsKey('rule')
            ? GoogleCloudDataplexV1DataQualityRule.fromJson(
                json_['rule'] as core.Map<core.String, core.dynamic>)
            : null,
      );