Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents a card action.

    interface CardAction {
        channelData?: unknown;
        displayText?: string;
        image?: string;
        imageAltText?: string;
        text?: string;
        title: string;
        type: string;
        value?: any;
    }

    Implemented by

    Index

    Properties

    channelData?: unknown

    Channel-specific data associated with the action.

    displayText?: string

    Display text for the action.

    image?: string

    URL of the image associated with the action.

    imageAltText?: string

    Alt text for the image.

    text?: string

    Text associated with the action.

    title: string

    Title of the action.

    type: string

    Type of the action.

    value?: any

    Value associated with the action.