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

23 lines
593 B
Go

package models
// SetCardCount informations about the number of cards in the set.
type SetCardCount struct {
// Total of the number of cards.
Total int `json:"total"`
// Official is the number of cards officially (on the bottom of each cards).
Official int `json:"official"`
// Normal number of cards having a normal version.
Normal int `json:"normal"`
// Reverse number of cards having an reverse version.
Reverse int `json:"reverse"`
// Holo number of cards having an holo version.
Holo int `json:"holo"`
// FirstEd number of possible cards.
FirstEd int `json:"firstEd"`
}