Skip to content

Instantly share code, notes, and snippets.

@ansonl
Created October 15, 2014 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ansonl/d5ecef2bb395f8001a2d to your computer and use it in GitHub Desktop.
Save ansonl/d5ecef2bb395f8001a2d to your computer and use it in GitHub Desktop.
Lobbyist Lookup House structs
type HouseLobbyist struct {
FirstName string `xml:"lobbyistFirstName"`
LastName string `xml:"lobbyistLastName"`
}
type HouseFiling struct {
OrganizationName string `xml:"organizationName"`
ClientName string `xml:"clientName"`
SenateID string `xml:"senateID"`
HouseID string `xml:"houseID"`
ReportYear string `xml:"reportYear"`
ReportType string `xml:"reportType"`
Lobbyist []HouseLobbyist `xml:"alis>ali_info>lobbyists>lobbyist"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment