DataQualityRule_StatisticRangeExpectation constructor
DataQualityRule_StatisticRangeExpectation({
- DataQualityRule_StatisticRangeExpectation_ColumnStatistic? statistic,
- String? minValue,
- String? maxValue,
- bool? strictMinEnabled,
- bool? strictMaxEnabled,
Implementation
factory DataQualityRule_StatisticRangeExpectation({
DataQualityRule_StatisticRangeExpectation_ColumnStatistic? statistic,
$core.String? minValue,
$core.String? maxValue,
$core.bool? strictMinEnabled,
$core.bool? strictMaxEnabled,
}) {
final $result = create();
if (statistic != null) {
$result.statistic = statistic;
}
if (minValue != null) {
$result.minValue = minValue;
}
if (maxValue != null) {
$result.maxValue = maxValue;
}
if (strictMinEnabled != null) {
$result.strictMinEnabled = strictMinEnabled;
}
if (strictMaxEnabled != null) {
$result.strictMaxEnabled = strictMaxEnabled;
}
return $result;
}