openstates/organization_node.go

21 lines
538 B
Go
Raw Normal View History

2019-04-08 12:23:51 +00:00
package openstates
type OrganizationNode struct {
Id string
Name string
Image string
Classification string
FoundingDate string
DissolutionDate string
Parent *OrganizationNode
Children []OrganizationNode
CurrentMemberships []MembershipNode
Identifiers []IdentifierNode
OtherNames []NameNode
Links []LinkNode
Sources []string
CreatedAt string
UpdatedAt string
Extras string
}