13 lines
375 B
Go
13 lines
375 B
Go
|
package scryfall
|
||
|
|
||
|
type Card struct {
|
||
|
Name string `json:"name"`
|
||
|
Set string `json:"set"`
|
||
|
Games []string `json:"games"`
|
||
|
Foil bool `json:"foil"`
|
||
|
NonFoil bool `json:"nonfoil"`
|
||
|
Promo bool `json:"promo"`
|
||
|
CollectorNumber string `json:"collector_number"`
|
||
|
Language string `json:"lang"`
|
||
|
}
|