SmartReplySuggestionResult

public class SmartReplySuggestionResult extends Object

This class is deprecated.
The standalone ML Kit SDK replaces this API. For more information, refer to the migration guide.

The suggested result from the FirebaseSmartReply for the given text. It contains a list of SmartReplySuggestions.

Nested Class Summary

@interface SmartReplySuggestionResult.Status All possible status codes for a Smart Reply suggestion attempt. 

Constant Summary

int STATUS_NOT_SUPPORTED_LANGUAGE The Smart Reply model currently doesn't support the language used in the conversation.
int STATUS_NO_REPLY The Smart Reply model cannot determine an applicable reply.
int STATUS_SUCCESS The Smart Reply model successfully generated (1-3) replies for you.

Public Method Summary

int
getStatus()
Gets the status of the Smart Reply suggestion result.
List<SmartReplySuggestion>
getSuggestions()
A list of the predicted responses sorted by confidence.
String

Inherited Method Summary

Constants

public static final int STATUS_NOT_SUPPORTED_LANGUAGE

The Smart Reply model currently doesn't support the language used in the conversation.

Constant Value: 101

public static final int STATUS_NO_REPLY

The Smart Reply model cannot determine an applicable reply.

Constant Value: 200

public static final int STATUS_SUCCESS

The Smart Reply model successfully generated (1-3) replies for you.

Constant Value: 0

Public Methods

public int getStatus ()

Gets the status of the Smart Reply suggestion result.

Possible values are:

public List<SmartReplySuggestion> getSuggestions ()

A list of the predicted responses sorted by confidence.

public String toString ()