openstates/division_node.go

16 lines
319 B
Go
Raw Permalink Normal View History

2019-04-08 12:23:51 +00:00
package openstates
type DivisionNode struct {
Id string `json:"id"`
Name string `json:"name"`
Redirect string `json:"redirect"`
Country string `json:"country"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
Extras string `json:"extras"`
2019-04-08 12:23:51 +00:00
}
const (
CountryUS = "us"
)