GoogleCloudDataplexV1ListDataAttributesResponse.fromJson constructor

GoogleCloudDataplexV1ListDataAttributesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1ListDataAttributesResponse.fromJson(core.Map json_)
    : this(
        dataAttributes: (json_['dataAttributes'] as core.List?)
            ?.map((value) => GoogleCloudDataplexV1DataAttribute.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(),
      );