feat: init client
This commit is contained in:
19
models/card_variant.go
Normal file
19
models/card_variant.go
Normal file
@@ -0,0 +1,19 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user