Skip to content

TProductOptionValue object

TProductOptionValue is an object representing details about the chosen variant option value of a certain product and consists of the following fields:

type TProductOptionValue = {
    id: string;
    order: number;
    name: string;
    optionId: string;
    label: string;
    userValue: string;
    additionalValue: unknown;
    type: string;
    color?: string;
};