Type Alias ProductPrices

ProductPrices: {
    currency: string;
    product: {
        id: number;
        placements: AdditionalPlacements[];
    };
    variants: VariantsPriceData[];
}

Product prices information

Type declaration

  • currency: string

    Abbreviation from the store currency or currency specified

  • product: {
        id: number;
        placements: AdditionalPlacements[];
    }

    Product related with the pricing information

    • id: number

      Product Identifier

    • placements: AdditionalPlacements[]

      Array containing the pricing information about the placement prices. The product price includes one print, pricing here only applies to each additional placement after the first. Note that while a placement might be included there is sometimes additional service fees that are applied to certain placement, for example large embroidery has an additional fee.

  • variants: VariantsPriceData[]