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

com.slack.api.model.dialog.DialogSelectElement Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
package com.slack.api.model.dialog;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

/**
 * Represents a select
 * dialog element

*

* Use the {@code select} element for multiple choice selections allowing users to pick a * single item from a list. True to web roots, this selection is displayed as a dropdown * menu. */ @Data @Builder @NoArgsConstructor @AllArgsConstructor public class DialogSelectElement implements DialogElement { /** * Label displayed to user. Required. No more than 24 characters. */ private String label; /** * Name of form element. Required. No more than 300 characters. */ private String name; /** * Type of element. For a dropdown (select), the type is always * {@code select} . It's required. * * @see Dialog form elements */ private final String type = "select"; /** * A default value for this field. Must match a value presented in {@link DialogOption}s. */ String value; /** * A string displayed as needed to help guide users in completing the element. * 150 character maximum. */ private String placeholder; /** * Provide true when the form element is not required. By default, form elements are * required. */ private boolean optional; /** * Provide up to 100 option element attributes. Either options or option_groups is required for the static and external. */ private List options; /** * Provide a default selected value for dynamic select menus with a data_source of type external. */ private List selectedOptions; /** * Provide up to 100 option group element attributes. Either options or option_groups is required for the static and external. */ private List optionGroups; /** * Provide the number of characters that must be typed by a user. */ private Integer minQueryLength; /** * Provide the data source type for the Element. */ private DialogDataSourceType dataSource; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy