Skip to main content

@slack/web-api / RadioButtons

Interface: RadioButtons

Defined in: packages/types/dist/block-kit/block-elements.d.ts:564

Description​

Allows users to choose one item from a list of possible options.

See​

Extends​

Properties​

action_id?​

optional action_id?: string;

Defined in: packages/types/dist/block-kit/extensions.d.ts:12

@description: An identifier for this action. You can use this when you receive an interaction payload to identify the source of the action. Should be unique among all other action_ids in the containing block. Maximum length for this field is 255 characters.

Inherited from​

Actionable.action_id


confirm?​

optional confirm?: ConfirmationDialog;

Defined in: packages/types/dist/block-kit/extensions.d.ts:21

Description​

A Confirm object that defines an optional confirmation dialog after the element is interacted with.

Inherited from​

Confirmable.confirm


focus_on_load?​

optional focus_on_load?: boolean;

Defined in: packages/types/dist/block-kit/extensions.d.ts:36

Description​

Indicates whether the element will be set to auto focus within the `view` object. Only one element can be set to true. Defaults to false.

Inherited from​

Focusable.focus_on_load


initial_option?​

optional initial_option?: Option;

Defined in: packages/types/dist/block-kit/block-elements.d.ts:573

Description​

An Option object that exactly matches one of the options within options. This option will be selected when the radio button group initially loads.


options​

options: Option[];

Defined in: packages/types/dist/block-kit/block-elements.d.ts:577

Description​

An array of Option objects. A maximum of 10 options are allowed.


type​

type: "radio_buttons";

Defined in: packages/types/dist/block-kit/block-elements.d.ts:568

Description​

The type of element. In this case type is always radio_buttons.

Overrides​

Actionable.type