GoogleCloudAiplatformV1SearchNearestEntitiesRequest.fromJson constructor

GoogleCloudAiplatformV1SearchNearestEntitiesRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1SearchNearestEntitiesRequest.fromJson(core.Map json_)
    : this(
        query: json_.containsKey('query')
            ? GoogleCloudAiplatformV1NearestNeighborQuery.fromJson(
                json_['query'] as core.Map<core.String, core.dynamic>)
            : null,
        returnFullEntity: json_.containsKey('returnFullEntity')
            ? json_['returnFullEntity'] as core.bool
            : null,
      );