GoogleCloudDataplexV1SearchEntriesResponse.fromJson constructor

GoogleCloudDataplexV1SearchEntriesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1SearchEntriesResponse.fromJson(core.Map json_)
  : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      results: (json_['results'] as core.List?)
          ?.map(
            (value) => GoogleCloudDataplexV1SearchEntriesResult.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      totalSize: json_['totalSize'] as core.int?,
      unreachable: (json_['unreachable'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );