Interface SectionComponent

interface SectionComponent {
    accessory: ThumbnailComponent | ButtonComponent;
    components: TextDisplayComponent[];
    id?: number;
    type: SECTION;
}

Hierarchy (view full)

Properties

components: TextDisplayComponent[]
id?: number

Autoincremented number if not provided

type: SECTION