Skip to content

Card (Set Deck)

The Card (Set Deck) Data Model describes the properties of a single card found in a Deck (Set).

TypeScript Model

Toggle Model
TypeScript
export type CardSetDeck = {
  count: number;
  finish: string;
  uuid: string;
};

Model Properties

count

The amount of this cards in the deck.

  • Type: number
  • Introduced: v5.2.2

finish

The finish of the card.

  • Type: string
  • Introduced: v5.2.2

uuid

The universal unique identifier (v5) generated by MTGJSON.

  • Type: string
  • Introduced: v5.2.2