Alokai

ProductPrice

Represents a product price.

type ProductPrice = {
  __typename?: 'ProductPrice'; /** The price discount. Represents the difference between the regular and final price. */
  discount?: Maybe<ProductDiscount>; /** The final price of the product after applying discounts. */
  final_price: Money; /** An array of the multiple Fixed Product Taxes that can be applied to a product price. */
  fixed_product_taxes?: Maybe<Array<Maybe<FixedProductTax>>>; /** The regular price of the product. */
  regular_price: Money;
};

Referenced Types

On this page