Files
boot-dev-pokedex/pokeapi/types_locations.go
2025-03-10 22:14:46 +02:00

13 lines
277 B
Go

package pokeapi
// RespShallowLocations -
type RespShallowLocations struct {
Count int `json:"count"`
Next *string `json:"next"`
Previous *string `json:"previous"`
Results []struct {
Name string `json:"name"`
URL string `json:"url"`
} `json:"results"`
}