Interface WebcastBanner

interface WebcastBanner {
    id: string;
    isEnabled?: boolean;
    link?: string;
    message: string;
    name: string;
    pushMethod: LiteralString<"Manual" | "AtEnd">;
}

Properties

id: string
isEnabled?: boolean

Only pushMethod == Manual type banners are enabled/disabled. At end banners appear when the webcast ends.

link?: string

The link/URL that opens when clicked in the banner.

message: string

The message that displays in the banner.

name: string

Provides a description of the banner for the attendee.

pushMethod: LiteralString<"Manual" | "AtEnd">