Interface BambuBrandUIConfig

The BambuBrandUIConfig object, maintains brand UI configuration and details.

interface BambuBrandUIConfig {
    linkActivation?: {
        backgroundColor?: string;
        boxBackgroundColor?: string;
        buttonTextColor?: string;
        logo?: string;
        primaryColor?: string;
        textColor?: string;
    };
    passDownload?: {
        backgroundColor?: string;
        logo?: string;
        text?: string;
        textColor?: string;
    };
}

Properties

linkActivation?: {
    backgroundColor?: string;
    boxBackgroundColor?: string;
    buttonTextColor?: string;
    logo?: string;
    primaryColor?: string;
    textColor?: string;
}

The link activation page configuration.

Type declaration

  • Optional backgroundColor?: string

    The background color of the link activation page.

  • Optional boxBackgroundColor?: string

    The background color of the confirmation box.

  • Optional buttonTextColor?: string

    The text color of the confirmation box button

  • Optional logo?: string

    The logo URL to be displayed in the link activation page.

  • Optional primaryColor?: string

    The primary color of the link activation page.

  • Optional textColor?: string

    The text color of the link activation page.

passDownload?: {
    backgroundColor?: string;
    logo?: string;
    text?: string;
    textColor?: string;
}

The pass download page configuration.

Type declaration

  • Optional backgroundColor?: string

    The background color of the pass download page.

  • Optional logo?: string

    The logo URL to be displayed in the pass download page.

  • Optional text?: string

    And messaging to be displayed on the page. This takes advantage of markdown to render in the page.

  • Optional textColor?: string

    The text color of the pass download page.