openstates/division_node.go

16 lines
204 B
Go
Raw Normal View History

2019-04-08 12:23:51 +00:00
package openstates
type DivisionNode struct {
Id string
Name string
Redirect string
Country string
CreatedAt string
UpdatedAt string
Extras string
}
const (
CountryUS = "us"
)