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
createdBy?: string
description: string
files: BrandFile[]
id: string
name: string
updatedAt?: string
updatedBy?: string