Type Alias Brand

A brand is a collection of assets for applying custom branding. Only a single brand can be active in a tenant.

type Brand = {
    active?: boolean;
    createdAt?: string;
    createdBy?: string;
    description: string;
    files: BrandFile[];
    id: string;
    name: string;
    updatedAt?: string;
    updatedBy?: string;
}
Index

Properties

active?: boolean
createdAt?: string

The UTC timestamp when the brand was created.

createdBy?: string

ID of a user that created the brand.

description: string
files: BrandFile[]

Collection of resources that make up the brand.

id: string
name: string
updatedAt?: string

The UTC timestamp when the brand was last updated.

updatedBy?: string

ID of a user that last updated the brand.