All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bot.builder.prompts.Choice Maven / Gradle / Ivy

import com.microsoft.bot.schema.models.CardAction;

import java.util.ArrayList;

public class Choice
{
    ///
    /// Value to return when selected.
    ///
    String _value;
    public void setValue(String value) {
        this._value = value;
    }
    public String getValue() {
        return this._value;
    }

    ///
    /// (Optional) action to use when rendering the choice as a suggested action.
    ///
    CardAction _action;
    public CardAction getAction() {
        return this._action;
    }
    public void setAction(CardAction action) {
        this._action = action;
    }

    ///
    /// (Optional) list of synonyms to recognize in addition to the value.
    ///
    ArrayList _synonyms;
    public ArrayList getSynonyms() {
        return _synonyms;
    }
    public void setSynonyms(ArrayList synonyms) {
        this._synonyms = synonyms;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy