#How to set static discount to variant?

2 messages · Page 1 of 1 (latest)

gray belfry
#

Hi, is it possible to apply static discount to product variant? From the type of variant input, I don't find anything related:

export type ProductVariantPrice = {
    id?: string;
    currency_code?: string;
    region_id?: string;
    amount: number;
    min_quantity?: number;
    max_quantity?: number;
};

I want to apply a discount to a variant without any condition, how can I achieve that?

vernal haven