Skip to content

Deck List

The Deck List Data Model describes the meta data properties of an individual Deck.

  • Parent file: DeckList
  • Parent property: data

TypeScript Model

Toggle Model
TypeScript
export type DeckList = {
  code: string;
  fileName: string;
  name: string;
  releaseDate: string | null;
  type: string;
};

Model Properties

code

The printing deck code for the deck.

  • Type: string
  • Introduced: v4.3.0

fileName

The file name for the deck. Combines the name and code properties to avoid namespace collisions and are given a _ delimiter.

  • Type: string
  • Introduced: v4.3.0

name

The name of the deck.

  • Type: string
  • Introduced: v4.3.0

releaseDate

The release date in ISO 8601 format for the set. Returns null if the deck was not formally released as a product.

  • Type: string | null
  • Introduced: v4.3.0

type

The type of the deck.

  • Type: string
  • Introduced: v5.1.0