Interface BambuProgram

BambuProgram is the interface for the response of the Program API

interface BambuProgram {
    abbreviation: string;
    audit: Audit;
    brandId: number;
    color?: string;
    externalIdentifier?: string;
    logo?: string;
    name: string;
    programId: number;
    status: string;
    statusCode: ProgramStatusCode;
    templateId?: number;
    tenantId: number;
}

Properties

abbreviation: string
audit: Audit
brandId: number
color?: string
externalIdentifier?: string
logo?: string
name: string
programId: number
status: string
statusCode: ProgramStatusCode
templateId?: number
tenantId: number