Interface ListMessage

interface ListMessage {
    body: string;
    globalButtons: GlobalButton[];
    items: ListMessageItem[];
    msgid: string;
    title: string;
}

Properties

body: string
globalButtons: GlobalButton[]
msgid: string
title: string