interface CardsData {
    _id: string;
    name: string;
    type: string;
    system: object;
    description: string;
    img: string;
    cards: Collection<BaseCard>;
    width: number;
    height: number;
    rotation: number;
    displayCount: boolean;
    folder: string;
    sort: number;
    ownership: object;
    flags: object;
    _stats: DocumentStats;
}

Properties

_id: string

The _id which uniquely identifies this stack of Cards document

name: string

The text name of this stack

type: string

The type of this stack, in BaseCards.metadata.types

system: object

Game system data which is defined by the system template.json model

description: string

A text description of this stack

img: string

An image or video which is used to represent the stack of cards

cards: Collection<BaseCard>

A collection of Card documents which currently belong to this stack

width: number

The visible width of this stack

height: number

The visible height of this stack

rotation: number

The angle of rotation of this stack

displayCount: boolean

Whether or not to publicly display the number of cards in this stack

folder: string

The _id of a Folder which contains this document

sort: number

The sort order of this stack relative to others in its parent collection

ownership: object

An object which configures ownership of this Cards

flags: object

An object of optional key/value flags

_stats: DocumentStats

An object of creation and access information