GoogleCloudDataplexV1ListDataAttributeBindingsResponse.fromJson constructor
GoogleCloudDataplexV1ListDataAttributeBindingsResponse.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1ListDataAttributeBindingsResponse.fromJson(
core.Map json_,
) : this(
dataAttributeBindings:
(json_['dataAttributeBindings'] as core.List?)
?.map(
(value) => GoogleCloudDataplexV1DataAttributeBinding.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
unreachableLocations:
(json_['unreachableLocations'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);