GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.fromJson constructor
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo.fromJson(
core.Map json_)
: this(
average: json_.containsKey('average')
? (json_['average'] as core.num).toDouble()
: null,
max: json_.containsKey('max') ? json_['max'] as core.String : null,
min: json_.containsKey('min') ? json_['min'] as core.String : null,
quartiles: json_.containsKey('quartiles')
? (json_['quartiles'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
standardDeviation: json_.containsKey('standardDeviation')
? (json_['standardDeviation'] as core.num).toDouble()
: null,
);