ComposeCardOptions: { type: string; message: string; signature: string; timestamp: string; previewCard: string }

Type declaration

  • type: string

    interactiveCard. “interactiveCard” type are json format messages from chat apps

  • message: string

    content of the message that will be posted into conversation

  • signature: string

    Zoom uses this to validate the integrity of interactive message before launching actions in interactive message. HMAC of the message (with the signing secret)

  • timestamp: string

    timestamp used to generate signature

  • previewCard: string

    Content of the preview. Stringified object.

    {
    // title of the preview card
    title: string,
    // description to be displayed in the card
    description: string
    }

Generated using TypeDoc