@slack/web-api / CarouselBlock
Interface: CarouselBlock
Defined in: packages/types/dist/block-kit/blocks.d.ts:107
Description
A horizontally scrollable collection of CardBlock elements.
See
Extends
Properties
block_id?
optional block_id: string;
Defined in: packages/types/dist/block-kit/blocks.d.ts:15
Description
A string acting as a unique identifier for a block. If not specified, a block_id will be generated.
You can use this block_id when you receive an interaction payload to
identify the source of the action.
Maximum length for this field is 255 characters. block_id should be unique for each message and each iteration of
a message. If a message is updated, use a new block_id.
Inherited from
elements
elements: CardBlock[];
Defined in: packages/types/dist/block-kit/blocks.d.ts:115
Description
An array of CardBlock elements. Minimum 1, maximum 10 cards.
type
type: "carousel";
Defined in: packages/types/dist/block-kit/blocks.d.ts:111
Description
The type of block. For a carousel block, type is always carousel.