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