TheMathemagicians/sevenkeys/logic/scryfall/card.go

16 lines
526 B
Go
Raw Normal View History

2024-05-27 17:32:54 +00:00
package scryfall
2024-05-21 14:17:25 +00:00
type Card struct {
Id string `json:"id"` // GUID
Name string `json:"name"`
Set string `json:"set"`
Games []string `json:"games"`
Foil bool `json:"foil"`
NonFoil bool `json:"nonfoil"`
Reserved bool `json:"reserved"`
ContentWarning bool `json:"content_warning,omitempty"`
Promo bool `json:"promo"`
CollectorNumber string `json:"collector_number"`
Language string `json:"lang"`
}