Files
tcgdex-golang/models/card_variant.go
2025-08-12 18:57:23 +02:00

20 lines
524 B
Go

package models
// CardVariant represents the possible variants of a card.
type CardVariant struct {
// Normal it's a basic card.
Normal bool `json:"normal"`
// Reverse the card have some shine behind colored content.
Reverse bool `json:"reverse"`
// Holo the card picture have some shine to it.
Holo bool `json:"holo"`
// FirstEdition the card contains a First Edition Stamp (only Base serie).
FirstEdition bool `json:"firstEdition"`
// WPromo The card has a wPromo stamp on it.
WPromo bool `json:"wPromo"`
}