Skip to content

Sku Ids

The SKU IDs Data Model describes the unique identifiers for each finish variant of a card printing at a specific language.

TypeScript Model

Toggle Model
TypeScript
export type SkuIds = {
  etched?: string;
  foil?: string;
  nonfoil?: string;
  other?: string;
  signed?: string;
};

Model Properties

etched O

The UUID for the etched finish variant.

  • Type: string
  • Introduced: v5.3.0

foil O

The UUID for the foil finish variant.

  • Type: string
  • Introduced: v5.3.0

nonfoil O

The UUID for the nonfoil finish variant.

  • Type: string
  • Introduced: v5.3.0

other O

The UUID for any other finish variant.

  • Type: string
  • Introduced: v5.3.0

signed O

The UUID for the signed finish variant.

  • Type: string
  • Introduced: v5.3.0