import { CardMessageItem } from '../card-message'; import { Choice } from '../choice'; /** * Field containing a Carrousel Message. */ export interface CarouselMessage { /** Message containing a list of cards often rendered horizontally on supported channels. */ carousel_message: CarouselMessageItem; } /** * Message containing a list of cards often rendered horizontally on supported channels. */ export interface CarouselMessageItem { /** A list of up to 10 cards. */ cards: CardMessageItem[]; /** Optional. Outer choices on the carousel level. The number of outer choices is limited to 3. */ choices?: Choice[]; }