GoogleCloudDataplexV1ListDataAttributeBindingsResponse.fromJson constructor

GoogleCloudDataplexV1ListDataAttributeBindingsResponse.fromJson(
  1. Map json_
)

Implementation

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