Skip to main content

@slack/types / ContextBlock

Interface: ContextBlock

Defined in: block-kit/blocks.ts:197

Description​

Displays contextual info, which can include both images and text.

See​

Context block reference.

Extends​

Properties​

block_id?​

optional block_id?: string;

Defined in: block-kit/blocks.ts:49

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​

Block.block_id


elements​

elements: ContextBlockElement[];

Defined in: block-kit/blocks.ts:206

Description​

An array of ImageElement, PlainTextElement or MrkdwnElement objects. Maximum number of items is 10.


type​

type: "context";

Defined in: block-kit/blocks.ts:201

Description​

The type of block. For a context block, type is always context.

Overrides​

Block.type