GoogleCloudAiplatformV1VertexAISearch.fromJson constructor
GoogleCloudAiplatformV1VertexAISearch.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1VertexAISearch.fromJson(core.Map json_)
: this(
dataStoreSpecs:
(json_['dataStoreSpecs'] as core.List?)
?.map(
(value) =>
GoogleCloudAiplatformV1VertexAISearchDataStoreSpec.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
datastore: json_['datastore'] as core.String?,
engine: json_['engine'] as core.String?,
filter: json_['filter'] as core.String?,
maxResults: json_['maxResults'] as core.int?,
);