23 lines
593 B
Go
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"`
|
|
}
|