Skip to content

Price Points

The Price Points Data Model describes the properties of a card's price provider prices.

  • Parent model: Price List
  • Parent property: buylist, retail

TypeScript Model

Toggle Model
TypeScript
export type PricePoints = {
  foil?: Record<string, number>;
  normal?: Record<string, number>;
};

Model Properties

foil O

The card's foil product price, where the key is the ISO 8601 date and value is its price.

  • Type: Record<string, number>
  • Introduced: v5.2.2

normal O

The card's normal product price, where the key is the ISO 8601 date and value is its price.

  • Type: Record<string, number>
  • Introduced: v5.2.2