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 = {
etched?: Record<string, number>;
foil?: Record<string, number>;
normal?: Record<string, number>;
};
Model Properties
etched O
The card's etched product price, where the key is the ISO 8601 date and value is its price.
- Type:
Record<string, number>
- Introduced:
v5.2.2
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