2024-05-27 17:32:54 +00:00
|
|
|
package scryfall
|
2024-05-21 13:41:35 +00:00
|
|
|
|
2024-05-21 14:17:25 +00:00
|
|
|
type Card struct {
|
2024-06-03 16:08:15 +00:00
|
|
|
Id string `json:"id"`
|
2024-05-21 14:52:26 +00:00
|
|
|
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"`
|
2024-05-21 13:41:35 +00:00
|
|
|
}
|