openstates/vote_types.go

12 lines
191 B
Go

package openstates
type VoteType string
const (
VotePassage = "passage"
VoteAmendment = "amendment"
VoteReading1 = "reading:1"
VoteReading2 = "reading:2"
VoteOther = "other"
)