Card (Set Deck)
The Card (Set Deck) Data Model describes the properties of a single card found in a Deck (Set).
- Parent model: Deck (Set)
- Parent property:
cards
TypeScript Model
Toggle Model
TypeScript
export type CardSetDeck = {
count: number;
isFoil?: boolean;
uuid: string;
};
Model Properties
count
The amount of this cards in the deck.
- Type:
number
- Introduced:
v5.2.2
isFoil O
If the card is foiled.
- Type:
boolean
- Introduced:
v5.2.2
uuid
The universal unique identifier (v5) generated by MTGJSON.
- Type:
string
- Introduced:
v5.2.2