Price List
The Price List Data Model describes the properties of a card providers list of buying and selling ability.
- Parent model: Price Formats
- Parent property:
cardhoarder,cardkingdom,cardmarket,cardsphere,tcgplayer
TypeScript Model
Toggle Model
TypeScript
export type PriceList = {
buylist?: PricePoints;
currency: string;
retail?: PricePoints;
};Model Properties
buylist O
A list of card type availability for selling cards to this provider. See the Price Points Data Model.
- Type:
PricePoints- Introduced:
v5.2.2
currency
The currency of prices listed.
- Type:
string- Introduced:
v5.2.2
retail O
A list of card type availability for buying cards from this provider. See the Price Points Data Model.
- Type:
PricePoints- Introduced:
v5.2.2