GoogleCloudDatacatalogLineageV1Link.fromJson constructor

GoogleCloudDatacatalogLineageV1Link.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogLineageV1Link.fromJson(core.Map json_)
    : this(
        endTime: json_.containsKey('endTime')
            ? json_['endTime'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        source: json_.containsKey('source')
            ? GoogleCloudDatacatalogLineageV1EntityReference.fromJson(
                json_['source'] as core.Map<core.String, core.dynamic>)
            : null,
        startTime: json_.containsKey('startTime')
            ? json_['startTime'] as core.String
            : null,
        target: json_.containsKey('target')
            ? GoogleCloudDatacatalogLineageV1EntityReference.fromJson(
                json_['target'] as core.Map<core.String, core.dynamic>)
            : null,
      );