Interface BambuBrandAttribute

The BambuBrandAttribute object, maintains brand attribute configuration and details. These attributes are used within wallet passes created for the brand.

interface BambuBrandAttribute {
    brandAttributeId: number;
    brandId: number;
    dataType: string;
    description: string;
    encrypted: boolean;
    name: string;
    providedOptions?: AttributeOption[];
    required: boolean;
    searchable: boolean;
    statusCode: number;
    unique_key: boolean;
}

Properties

brandAttributeId: number

The brand attribute unique identifier

brandId: number

The brand unique identifier

dataType: string

The brand attribute data type

description: string

A description of the brand attribute

encrypted: boolean

Is this attribute encrypted?

name: string

The brand attribute name

providedOptions?: AttributeOption[]

The brand attribute options

required: boolean

Is this attribute required?

searchable: boolean

Is this attribute searchable?

statusCode: number

The status of the brand attribute

unique_key: boolean

Is this the unique identifier for the brand?