com.google.cloud.dialogflow.cx.v3beta1.QueryParametersOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
The newest version!
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3beta1/session.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
public interface QueryParametersOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.QueryParameters)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The time zone of this conversational query from the [time zone
* database](https://www.iana.org/time-zones), e.g., America/New_York,
* Europe/Paris. If not provided, the time zone specified in the agent is
* used.
*
*
* string time_zone = 1;
*
* @return The timeZone.
*/
java.lang.String getTimeZone();
/**
*
*
*
* The time zone of this conversational query from the [time zone
* database](https://www.iana.org/time-zones), e.g., America/New_York,
* Europe/Paris. If not provided, the time zone specified in the agent is
* used.
*
*
* string time_zone = 1;
*
* @return The bytes for timeZone.
*/
com.google.protobuf.ByteString getTimeZoneBytes();
/**
*
*
*
* The geo location of this conversational query.
*
*
* .google.type.LatLng geo_location = 2;
*
* @return Whether the geoLocation field is set.
*/
boolean hasGeoLocation();
/**
*
*
*
* The geo location of this conversational query.
*
*
* .google.type.LatLng geo_location = 2;
*
* @return The geoLocation.
*/
com.google.type.LatLng getGeoLocation();
/**
*
*
*
* The geo location of this conversational query.
*
*
* .google.type.LatLng geo_location = 2;
*/
com.google.type.LatLngOrBuilder getGeoLocationOrBuilder();
/**
*
*
*
* Additional session entity types to replace or extend developer entity types
* with. The entity synonyms apply to all languages and persist for the
* session of this query.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.SessionEntityType session_entity_types = 3;
*
*/
java.util.List
getSessionEntityTypesList();
/**
*
*
*
* Additional session entity types to replace or extend developer entity types
* with. The entity synonyms apply to all languages and persist for the
* session of this query.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.SessionEntityType session_entity_types = 3;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.SessionEntityType getSessionEntityTypes(int index);
/**
*
*
*
* Additional session entity types to replace or extend developer entity types
* with. The entity synonyms apply to all languages and persist for the
* session of this query.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.SessionEntityType session_entity_types = 3;
*
*/
int getSessionEntityTypesCount();
/**
*
*
*
* Additional session entity types to replace or extend developer entity types
* with. The entity synonyms apply to all languages and persist for the
* session of this query.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.SessionEntityType session_entity_types = 3;
*
*/
java.util.List extends com.google.cloud.dialogflow.cx.v3beta1.SessionEntityTypeOrBuilder>
getSessionEntityTypesOrBuilderList();
/**
*
*
*
* Additional session entity types to replace or extend developer entity types
* with. The entity synonyms apply to all languages and persist for the
* session of this query.
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.SessionEntityType session_entity_types = 3;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.SessionEntityTypeOrBuilder getSessionEntityTypesOrBuilder(
int index);
/**
*
*
*
* This field can be used to pass custom data into the webhook associated with
* the agent. Arbitrary JSON objects are supported.
* Some integrations that query a Dialogflow agent may provide additional
* information in the payload.
* In particular, for the Dialogflow Phone Gateway integration, this field has
* the form:
* ```
* {
* "telephony": {
* "caller_id": "+18558363987"
* }
* }
* ```
*
*
* .google.protobuf.Struct payload = 4;
*
* @return Whether the payload field is set.
*/
boolean hasPayload();
/**
*
*
*
* This field can be used to pass custom data into the webhook associated with
* the agent. Arbitrary JSON objects are supported.
* Some integrations that query a Dialogflow agent may provide additional
* information in the payload.
* In particular, for the Dialogflow Phone Gateway integration, this field has
* the form:
* ```
* {
* "telephony": {
* "caller_id": "+18558363987"
* }
* }
* ```
*
*
* .google.protobuf.Struct payload = 4;
*
* @return The payload.
*/
com.google.protobuf.Struct getPayload();
/**
*
*
*
* This field can be used to pass custom data into the webhook associated with
* the agent. Arbitrary JSON objects are supported.
* Some integrations that query a Dialogflow agent may provide additional
* information in the payload.
* In particular, for the Dialogflow Phone Gateway integration, this field has
* the form:
* ```
* {
* "telephony": {
* "caller_id": "+18558363987"
* }
* }
* ```
*
*
* .google.protobuf.Struct payload = 4;
*/
com.google.protobuf.StructOrBuilder getPayloadOrBuilder();
/**
*
*
*
* Additional parameters to be put into [session
* parameters][SessionInfo.parameters]. To remove a
* parameter from the session, clients should explicitly set the parameter
* value to null.
*
* You can reference the session parameters in the agent with the following
* format: $session.params.parameter-id.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 5;
*
* @return Whether the parameters field is set.
*/
boolean hasParameters();
/**
*
*
*
* Additional parameters to be put into [session
* parameters][SessionInfo.parameters]. To remove a
* parameter from the session, clients should explicitly set the parameter
* value to null.
*
* You can reference the session parameters in the agent with the following
* format: $session.params.parameter-id.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 5;
*
* @return The parameters.
*/
com.google.protobuf.Struct getParameters();
/**
*
*
*
* Additional parameters to be put into [session
* parameters][SessionInfo.parameters]. To remove a
* parameter from the session, clients should explicitly set the parameter
* value to null.
*
* You can reference the session parameters in the agent with the following
* format: $session.params.parameter-id.
*
* Depending on your protocol or client library language, this is a
* map, associative array, symbol table, dictionary, or JSON object
* composed of a collection of (MapKey, MapValue) pairs:
*
* * MapKey type: string
* * MapKey value: parameter name
* * MapValue type: If parameter's entity type is a composite entity then use
* map, otherwise, depending on the parameter value type, it could be one of
* string, number, boolean, null, list or map.
* * MapValue value: If parameter's entity type is a composite entity then use
* map from composite entity property names to property values, otherwise,
* use parameter value.
*
*
* .google.protobuf.Struct parameters = 5;
*/
com.google.protobuf.StructOrBuilder getParametersOrBuilder();
/**
*
*
*
* The unique identifier of the
* [page][google.cloud.dialogflow.cx.v3beta1.Page] to override the [current
* page][QueryResult.current_page] in the session.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/pages/<PageID>`.
*
* If `current_page` is specified, the previous state of the session will be
* ignored by Dialogflow, including the [previous
* page][QueryResult.current_page] and the [previous session
* parameters][QueryResult.parameters].
* In most cases,
* [current_page][google.cloud.dialogflow.cx.v3beta1.QueryParameters.current_page]
* and
* [parameters][google.cloud.dialogflow.cx.v3beta1.QueryParameters.parameters]
* should be configured together to direct a session to a specific state.
*
*
* string current_page = 6 [(.google.api.resource_reference) = { ... }
*
* @return The currentPage.
*/
java.lang.String getCurrentPage();
/**
*
*
*
* The unique identifier of the
* [page][google.cloud.dialogflow.cx.v3beta1.Page] to override the [current
* page][QueryResult.current_page] in the session.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/pages/<PageID>`.
*
* If `current_page` is specified, the previous state of the session will be
* ignored by Dialogflow, including the [previous
* page][QueryResult.current_page] and the [previous session
* parameters][QueryResult.parameters].
* In most cases,
* [current_page][google.cloud.dialogflow.cx.v3beta1.QueryParameters.current_page]
* and
* [parameters][google.cloud.dialogflow.cx.v3beta1.QueryParameters.parameters]
* should be configured together to direct a session to a specific state.
*
*
* string current_page = 6 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for currentPage.
*/
com.google.protobuf.ByteString getCurrentPageBytes();
/**
*
*
*
* Whether to disable webhook calls for this request.
*
*
* bool disable_webhook = 7;
*
* @return The disableWebhook.
*/
boolean getDisableWebhook();
/**
*
*
*
* Configures whether sentiment analysis should be performed. If not
* provided, sentiment analysis is not performed.
*
*
* bool analyze_query_text_sentiment = 8;
*
* @return The analyzeQueryTextSentiment.
*/
boolean getAnalyzeQueryTextSentiment();
/**
*
*
*
* This field can be used to pass HTTP headers for a webhook
* call. These headers will be sent to webhook along with the headers that
* have been configured through Dialogflow web console. The headers defined
* within this field will overwrite the headers configured through Dialogflow
* console if there is a conflict. Header names are case-insensitive.
* Google's specified headers are not allowed. Including: "Host",
* "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding",
* "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc.
*
*
* map<string, string> webhook_headers = 10;
*/
int getWebhookHeadersCount();
/**
*
*
*
* This field can be used to pass HTTP headers for a webhook
* call. These headers will be sent to webhook along with the headers that
* have been configured through Dialogflow web console. The headers defined
* within this field will overwrite the headers configured through Dialogflow
* console if there is a conflict. Header names are case-insensitive.
* Google's specified headers are not allowed. Including: "Host",
* "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding",
* "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc.
*
*
* map<string, string> webhook_headers = 10;
*/
boolean containsWebhookHeaders(java.lang.String key);
/** Use {@link #getWebhookHeadersMap()} instead. */
@java.lang.Deprecated
java.util.Map getWebhookHeaders();
/**
*
*
*
* This field can be used to pass HTTP headers for a webhook
* call. These headers will be sent to webhook along with the headers that
* have been configured through Dialogflow web console. The headers defined
* within this field will overwrite the headers configured through Dialogflow
* console if there is a conflict. Header names are case-insensitive.
* Google's specified headers are not allowed. Including: "Host",
* "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding",
* "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc.
*
*
* map<string, string> webhook_headers = 10;
*/
java.util.Map getWebhookHeadersMap();
/**
*
*
*
* This field can be used to pass HTTP headers for a webhook
* call. These headers will be sent to webhook along with the headers that
* have been configured through Dialogflow web console. The headers defined
* within this field will overwrite the headers configured through Dialogflow
* console if there is a conflict. Header names are case-insensitive.
* Google's specified headers are not allowed. Including: "Host",
* "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding",
* "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc.
*
*
* map<string, string> webhook_headers = 10;
*/
/* nullable */
java.lang.String getWebhookHeadersOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* This field can be used to pass HTTP headers for a webhook
* call. These headers will be sent to webhook along with the headers that
* have been configured through Dialogflow web console. The headers defined
* within this field will overwrite the headers configured through Dialogflow
* console if there is a conflict. Header names are case-insensitive.
* Google's specified headers are not allowed. Including: "Host",
* "Content-Length", "Connection", "From", "User-Agent", "Accept-Encoding",
* "If-Modified-Since", "If-None-Match", "X-Forwarded-For", etc.
*
*
* map<string, string> webhook_headers = 10;
*/
java.lang.String getWebhookHeadersOrThrow(java.lang.String key);
/**
*
*
*
* A list of flow versions to override for the request.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VersionID>`.
*
* If version 1 of flow X is included in this list, the traffic of
* flow X will go through version 1 regardless of the version configuration
* in the environment. Each flow can have at most one version specified in
* this list.
*
*
* repeated string flow_versions = 14 [(.google.api.resource_reference) = { ... }
*
* @return A list containing the flowVersions.
*/
java.util.List getFlowVersionsList();
/**
*
*
*
* A list of flow versions to override for the request.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VersionID>`.
*
* If version 1 of flow X is included in this list, the traffic of
* flow X will go through version 1 regardless of the version configuration
* in the environment. Each flow can have at most one version specified in
* this list.
*
*
* repeated string flow_versions = 14 [(.google.api.resource_reference) = { ... }
*
* @return The count of flowVersions.
*/
int getFlowVersionsCount();
/**
*
*
*
* A list of flow versions to override for the request.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VersionID>`.
*
* If version 1 of flow X is included in this list, the traffic of
* flow X will go through version 1 regardless of the version configuration
* in the environment. Each flow can have at most one version specified in
* this list.
*
*
* repeated string flow_versions = 14 [(.google.api.resource_reference) = { ... }
*
* @param index The index of the element to return.
* @return The flowVersions at the given index.
*/
java.lang.String getFlowVersions(int index);
/**
*
*
*
* A list of flow versions to override for the request.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VersionID>`.
*
* If version 1 of flow X is included in this list, the traffic of
* flow X will go through version 1 regardless of the version configuration
* in the environment. Each flow can have at most one version specified in
* this list.
*
*
* repeated string flow_versions = 14 [(.google.api.resource_reference) = { ... }
*
* @param index The index of the value to return.
* @return The bytes of the flowVersions at the given index.
*/
com.google.protobuf.ByteString getFlowVersionsBytes(int index);
/**
*
*
*
* Optional. Start the session with the specified
* [playbook][google.cloud.dialogflow.cx.v3beta1.Playbook]. You can only
* specify the playbook at the beginning of the session. Otherwise, an error
* will be thrown.
*
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
*
* string current_playbook = 19 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The currentPlaybook.
*/
java.lang.String getCurrentPlaybook();
/**
*
*
*
* Optional. Start the session with the specified
* [playbook][google.cloud.dialogflow.cx.v3beta1.Playbook]. You can only
* specify the playbook at the beginning of the session. Otherwise, an error
* will be thrown.
*
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/playbooks/<PlaybookID>`.
*
*
*
* string current_playbook = 19 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for currentPlaybook.
*/
com.google.protobuf.ByteString getCurrentPlaybookBytes();
/**
*
*
*
* Optional. Use the specified LLM model settings for processing the request.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.LlmModelSettings llm_model_settings = 21 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the llmModelSettings field is set.
*/
boolean hasLlmModelSettings();
/**
*
*
*
* Optional. Use the specified LLM model settings for processing the request.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.LlmModelSettings llm_model_settings = 21 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The llmModelSettings.
*/
com.google.cloud.dialogflow.cx.v3beta1.LlmModelSettings getLlmModelSettings();
/**
*
*
*
* Optional. Use the specified LLM model settings for processing the request.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.LlmModelSettings llm_model_settings = 21 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.dialogflow.cx.v3beta1.LlmModelSettingsOrBuilder getLlmModelSettingsOrBuilder();
/**
*
*
*
* The channel which this query is for.
*
* If specified, only the
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage]
* associated with the channel will be returned. If no
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage] is
* associated with the channel, it falls back to the
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage] with
* unspecified channel.
*
* If unspecified, the
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage] with
* unspecified channel will be returned.
*
*
* string channel = 15;
*
* @return The channel.
*/
java.lang.String getChannel();
/**
*
*
*
* The channel which this query is for.
*
* If specified, only the
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage]
* associated with the channel will be returned. If no
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage] is
* associated with the channel, it falls back to the
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage] with
* unspecified channel.
*
* If unspecified, the
* [ResponseMessage][google.cloud.dialogflow.cx.v3beta1.ResponseMessage] with
* unspecified channel will be returned.
*
*
* string channel = 15;
*
* @return The bytes for channel.
*/
com.google.protobuf.ByteString getChannelBytes();
/**
*
*
*
* Optional. Configure lifetime of the Dialogflow session.
* By default, a Dialogflow session remains active and its data is stored for
* 30 minutes after the last request is sent for the session.
* This value should be no longer than 1 day.
*
*
* .google.protobuf.Duration session_ttl = 16 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the sessionTtl field is set.
*/
boolean hasSessionTtl();
/**
*
*
*
* Optional. Configure lifetime of the Dialogflow session.
* By default, a Dialogflow session remains active and its data is stored for
* 30 minutes after the last request is sent for the session.
* This value should be no longer than 1 day.
*
*
* .google.protobuf.Duration session_ttl = 16 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The sessionTtl.
*/
com.google.protobuf.Duration getSessionTtl();
/**
*
*
*
* Optional. Configure lifetime of the Dialogflow session.
* By default, a Dialogflow session remains active and its data is stored for
* 30 minutes after the last request is sent for the session.
* This value should be no longer than 1 day.
*
*
* .google.protobuf.Duration session_ttl = 16 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.protobuf.DurationOrBuilder getSessionTtlOrBuilder();
/**
*
*
*
* Optional. Information about the end-user to improve the relevance and
* accuracy of generative answers.
*
* This will be interpreted and used by a language model, so, for good
* results, the data should be self-descriptive, and in a simple structure.
*
* Example:
*
* ```json
* {
* "subscription plan": "Business Premium Plus",
* "devices owned": [
* {"model": "Google Pixel 7"},
* {"model": "Google Pixel Tablet"}
* ]
* }
* ```
*
*
* .google.protobuf.Struct end_user_metadata = 18 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the endUserMetadata field is set.
*/
boolean hasEndUserMetadata();
/**
*
*
*
* Optional. Information about the end-user to improve the relevance and
* accuracy of generative answers.
*
* This will be interpreted and used by a language model, so, for good
* results, the data should be self-descriptive, and in a simple structure.
*
* Example:
*
* ```json
* {
* "subscription plan": "Business Premium Plus",
* "devices owned": [
* {"model": "Google Pixel 7"},
* {"model": "Google Pixel Tablet"}
* ]
* }
* ```
*
*
* .google.protobuf.Struct end_user_metadata = 18 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The endUserMetadata.
*/
com.google.protobuf.Struct getEndUserMetadata();
/**
*
*
*
* Optional. Information about the end-user to improve the relevance and
* accuracy of generative answers.
*
* This will be interpreted and used by a language model, so, for good
* results, the data should be self-descriptive, and in a simple structure.
*
* Example:
*
* ```json
* {
* "subscription plan": "Business Premium Plus",
* "devices owned": [
* {"model": "Google Pixel 7"},
* {"model": "Google Pixel Tablet"}
* ]
* }
* ```
*
*
* .google.protobuf.Struct end_user_metadata = 18 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.protobuf.StructOrBuilder getEndUserMetadataOrBuilder();
/**
*
*
*
* Optional. Search configuration for UCS search queries.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.SearchConfig search_config = 20 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the searchConfig field is set.
*/
boolean hasSearchConfig();
/**
*
*
*
* Optional. Search configuration for UCS search queries.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.SearchConfig search_config = 20 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The searchConfig.
*/
com.google.cloud.dialogflow.cx.v3beta1.SearchConfig getSearchConfig();
/**
*
*
*
* Optional. Search configuration for UCS search queries.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.SearchConfig search_config = 20 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.dialogflow.cx.v3beta1.SearchConfigOrBuilder getSearchConfigOrBuilder();
/**
*
*
*
* Optional. If set to true and data stores are involved in serving the
* request then
* DetectIntentResponse.query_result.data_store_connection_signals
* will be filled with data that can help evaluations.
*
*
*
* bool populate_data_store_connection_signals = 25 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The populateDataStoreConnectionSignals.
*/
boolean getPopulateDataStoreConnectionSignals();
}