openstates/membership_node.go

17 lines
322 B
Go
Raw Normal View History

2019-04-08 12:23:51 +00:00
package openstates
type MembershipNode struct {
Id string
PersonName string
Person *PersonNode
Organization *OrganizationNode
Post *PostNode
Label string
Role string
StartDate string
EndDate string
CreatedAt string
UpdatedAt string
Extras string
}