public final class CompleteQueryResponse extends GeneratedMessageV3 implements CompleteQueryResponseOrBuilder
Response of the auto-complete query.
Protobuf type google.cloud.retail.v2.CompleteQueryResponse
Static Fields
ATTRIBUTION_TOKEN_FIELD_NUMBER
public static final int ATTRIBUTION_TOKEN_FIELD_NUMBER
Field Value
COMPLETION_RESULTS_FIELD_NUMBER
public static final int COMPLETION_RESULTS_FIELD_NUMBER
Field Value
RECENT_SEARCH_RESULTS_FIELD_NUMBER
public static final int RECENT_SEARCH_RESULTS_FIELD_NUMBER
Field Value
Static Methods
getDefaultInstance()
public static CompleteQueryResponse getDefaultInstance()
Returns
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns
newBuilder()
public static CompleteQueryResponse.Builder newBuilder()
Returns
newBuilder(CompleteQueryResponse prototype)
public static CompleteQueryResponse.Builder newBuilder(CompleteQueryResponse prototype)
Parameter
Returns
public static CompleteQueryResponse parseDelimitedFrom(InputStream input)
Parameter
Returns
Exceptions
public static CompleteQueryResponse parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(byte[] data)
public static CompleteQueryResponse parseFrom(byte[] data)
Parameter
Name | Description |
data | byte[]
|
Returns
Exceptions
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static CompleteQueryResponse parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteString data)
public static CompleteQueryResponse parseFrom(ByteString data)
Parameter
Returns
Exceptions
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static CompleteQueryResponse parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static CompleteQueryResponse parseFrom(CodedInputStream input)
Parameter
Returns
Exceptions
public static CompleteQueryResponse parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static CompleteQueryResponse parseFrom(InputStream input)
Parameter
Returns
Exceptions
public static CompleteQueryResponse parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteBuffer data)
public static CompleteQueryResponse parseFrom(ByteBuffer data)
Parameter
Returns
Exceptions
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static CompleteQueryResponse parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parser()
public static Parser<CompleteQueryResponse> parser()
Returns
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter
Returns
Overrides
getAttributionToken()
public String getAttributionToken()
A unique complete token. This should be included in the
UserEvent.completion_detail
for search events resulting from this completion, which enables accurate
attribution of complete model performance.
string attribution_token = 2;
Returns
Type | Description |
String | The attributionToken.
|
getAttributionTokenBytes()
public ByteString getAttributionTokenBytes()
A unique complete token. This should be included in the
UserEvent.completion_detail
for search events resulting from this completion, which enables accurate
attribution of complete model performance.
string attribution_token = 2;
Returns
Type | Description |
ByteString | The bytes for attributionToken.
|
getCompletionResults(int index)
public CompleteQueryResponse.CompletionResult getCompletionResults(int index)
Results of the matching suggestions. The result list is ordered and the
first result is top suggestion.
repeated .google.cloud.retail.v2.CompleteQueryResponse.CompletionResult completion_results = 1;
Parameter
Returns
getCompletionResultsCount()
public int getCompletionResultsCount()
Results of the matching suggestions. The result list is ordered and the
first result is top suggestion.
repeated .google.cloud.retail.v2.CompleteQueryResponse.CompletionResult completion_results = 1;
Returns
getCompletionResultsList()
public List<CompleteQueryResponse.CompletionResult> getCompletionResultsList()
Results of the matching suggestions. The result list is ordered and the
first result is top suggestion.
repeated .google.cloud.retail.v2.CompleteQueryResponse.CompletionResult completion_results = 1;
Returns
getCompletionResultsOrBuilder(int index)
public CompleteQueryResponse.CompletionResultOrBuilder getCompletionResultsOrBuilder(int index)
Results of the matching suggestions. The result list is ordered and the
first result is top suggestion.
repeated .google.cloud.retail.v2.CompleteQueryResponse.CompletionResult completion_results = 1;
Parameter
Returns
getCompletionResultsOrBuilderList()
public List<? extends CompleteQueryResponse.CompletionResultOrBuilder> getCompletionResultsOrBuilderList()
Results of the matching suggestions. The result list is ordered and the
first result is top suggestion.
repeated .google.cloud.retail.v2.CompleteQueryResponse.CompletionResult completion_results = 1;
Returns
Type | Description |
List<? extends com.google.cloud.retail.v2.CompleteQueryResponse.CompletionResultOrBuilder> | |
getDefaultInstanceForType()
public CompleteQueryResponse getDefaultInstanceForType()
Returns
getParserForType()
public Parser<CompleteQueryResponse> getParserForType()
Returns
Overrides
getRecentSearchResults(int index)
public CompleteQueryResponse.RecentSearchResult getRecentSearchResults(int index)
Matched recent searches of this user. The maximum number of recent searches
is 10. This field is a restricted feature. Contact Retail Search support
team if you are interested in enabling it.
This feature is only available when
CompleteQueryRequest.visitor_id
field is set and UserEvent is imported.
The recent searches satisfy the follow rules:
- They are ordered from latest to oldest.
- They are matched with
CompleteQueryRequest.query
case insensitively.
- They are transformed to lower case.
- They are UTF-8 safe.
Recent searches are deduplicated. More recent searches will be reserved
when duplication happens.
repeated .google.cloud.retail.v2.CompleteQueryResponse.RecentSearchResult recent_search_results = 3;
Parameter
Returns
getRecentSearchResultsCount()
public int getRecentSearchResultsCount()
Matched recent searches of this user. The maximum number of recent searches
is 10. This field is a restricted feature. Contact Retail Search support
team if you are interested in enabling it.
This feature is only available when
CompleteQueryRequest.visitor_id
field is set and UserEvent is imported.
The recent searches satisfy the follow rules:
- They are ordered from latest to oldest.
- They are matched with
CompleteQueryRequest.query
case insensitively.
- They are transformed to lower case.
- They are UTF-8 safe.
Recent searches are deduplicated. More recent searches will be reserved
when duplication happens.
repeated .google.cloud.retail.v2.CompleteQueryResponse.RecentSearchResult recent_search_results = 3;
Returns
getRecentSearchResultsList()
public List<CompleteQueryResponse.RecentSearchResult> getRecentSearchResultsList()
Matched recent searches of this user. The maximum number of recent searches
is 10. This field is a restricted feature. Contact Retail Search support
team if you are interested in enabling it.
This feature is only available when
CompleteQueryRequest.visitor_id
field is set and UserEvent is imported.
The recent searches satisfy the follow rules:
- They are ordered from latest to oldest.
- They are matched with
CompleteQueryRequest.query
case insensitively.
- They are transformed to lower case.
- They are UTF-8 safe.
Recent searches are deduplicated. More recent searches will be reserved
when duplication happens.
repeated .google.cloud.retail.v2.CompleteQueryResponse.RecentSearchResult recent_search_results = 3;
Returns
getRecentSearchResultsOrBuilder(int index)
public CompleteQueryResponse.RecentSearchResultOrBuilder getRecentSearchResultsOrBuilder(int index)
Matched recent searches of this user. The maximum number of recent searches
is 10. This field is a restricted feature. Contact Retail Search support
team if you are interested in enabling it.
This feature is only available when
CompleteQueryRequest.visitor_id
field is set and UserEvent is imported.
The recent searches satisfy the follow rules:
- They are ordered from latest to oldest.
- They are matched with
CompleteQueryRequest.query
case insensitively.
- They are transformed to lower case.
- They are UTF-8 safe.
Recent searches are deduplicated. More recent searches will be reserved
when duplication happens.
repeated .google.cloud.retail.v2.CompleteQueryResponse.RecentSearchResult recent_search_results = 3;
Parameter
Returns
getRecentSearchResultsOrBuilderList()
public List<? extends CompleteQueryResponse.RecentSearchResultOrBuilder> getRecentSearchResultsOrBuilderList()
Matched recent searches of this user. The maximum number of recent searches
is 10. This field is a restricted feature. Contact Retail Search support
team if you are interested in enabling it.
This feature is only available when
CompleteQueryRequest.visitor_id
field is set and UserEvent is imported.
The recent searches satisfy the follow rules:
- They are ordered from latest to oldest.
- They are matched with
CompleteQueryRequest.query
case insensitively.
- They are transformed to lower case.
- They are UTF-8 safe.
Recent searches are deduplicated. More recent searches will be reserved
when duplication happens.
repeated .google.cloud.retail.v2.CompleteQueryResponse.RecentSearchResult recent_search_results = 3;
Returns
Type | Description |
List<? extends com.google.cloud.retail.v2.CompleteQueryResponse.RecentSearchResultOrBuilder> | |
getSerializedSize()
public int getSerializedSize()
Returns
Overrides
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Returns
Overrides
hashCode()
Returns
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Overrides
isInitialized()
public final boolean isInitialized()
Returns
Overrides
newBuilderForType()
public CompleteQueryResponse.Builder newBuilderForType()
Returns
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected CompleteQueryResponse.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Returns
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Returns
Overrides
toBuilder()
public CompleteQueryResponse.Builder toBuilder()
Returns
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Parameter
Overrides
Exceptions