GoogleCloudDataplexV1DataQualityRuleRangeExpectation.fromJson constructor
GoogleCloudDataplexV1DataQualityRuleRangeExpectation.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1DataQualityRuleRangeExpectation.fromJson(core.Map json_)
: this(
maxValue: json_.containsKey('maxValue')
? json_['maxValue'] as core.String
: null,
minValue: json_.containsKey('minValue')
? json_['minValue'] as core.String
: null,
strictMaxEnabled: json_.containsKey('strictMaxEnabled')
? json_['strictMaxEnabled'] as core.bool
: null,
strictMinEnabled: json_.containsKey('strictMinEnabled')
? json_['strictMinEnabled'] as core.bool
: null,
);