openstates/legislative_session_node.go

16 lines
289 B
Go
Raw Normal View History

2019-04-08 12:23:51 +00:00
package openstates
type LegislativeSessionNode struct {
Jurisdiction *JurisdictionNode
Identifier string
Name string
Classification string
StartDate string
EndDate string
}
const (
ClassificationPrimary = "primary"
ClassificationSpecial = "special"
)