export interface ProductUnitQuantity {
    quantity: number;
    sale_price_tax: number;
    wholesale_price_tax: number;
    custom_price_tax: number;
    expiration_date: string;
    sale_price: number;
    sale_price_edit: number;
    sale_price_without_tax: number;
    sale_price_with_tax: number;
    wholesale_price: number;
    wholesale_price_edit: number;
    wholesale_price_with_tax: number;
    wholesale_price_without_tax: number;
    preview_url: string;
    custom_price: number;
    custom_price_edit: number;
    custom_price_without_tax: number;
    custom_price_with_tax: number;
}