GoogleCloudDataplexV1ActionInvalidDataFormat.fromJson constructor
GoogleCloudDataplexV1ActionInvalidDataFormat.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1ActionInvalidDataFormat.fromJson(core.Map json_)
: this(
expectedFormat: json_.containsKey('expectedFormat')
? json_['expectedFormat'] as core.String
: null,
newFormat: json_.containsKey('newFormat')
? json_['newFormat'] as core.String
: null,
sampledDataLocations: json_.containsKey('sampledDataLocations')
? (json_['sampledDataLocations'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);