GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse.fromJson constructor
GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse.fromJson(
core.Map json_)
: this(
lineageEvents: json_.containsKey('lineageEvents')
? (json_['lineageEvents'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
process: json_.containsKey('process')
? json_['process'] as core.String
: null,
run: json_.containsKey('run') ? json_['run'] as core.String : null,
);