Represents a value of a product attribute.

interface ProductAttributeValue {
    AdjustmentType: ProductAttributeValuePriceAdjustmentType;
    ExternalIds: ExternalId[];
    FriendlyName: string;
    HeightAdjustment: number;
    IsDisabled: boolean;
    IsPreSelected: boolean;
    LengthAdjustment: number;
    Name: string;
    PriceAdjustment: number;
    WeightAdjustment: number;
    WidthAdjustment: number;
}

Properties

The type of adjustment (percent or absolute) for the product attribute value.

ExternalIds: ExternalId[]

External identifiers associated with the product attribute value.

FriendlyName: string

The friendly name or display value of the product attribute.

HeightAdjustment: number

The height adjustment associated with the product attribute value.

IsDisabled: boolean

Indicates whether the product attribute value is disabled.

IsPreSelected: boolean

Indicates whether the product attribute value is pre-selected.

LengthAdjustment: number

The length adjustment associated with the product attribute value.

Name: string

The name or value of the product attribute.

PriceAdjustment: number

The price adjustment associated with the product attribute value.

WeightAdjustment: number

The weight adjustment associated with the product attribute value.

WidthAdjustment: number

The width adjustment associated with the product attribute value.