array.go 481 B

12345678910111213141516171819202122232425
  1. package leads
  2. // The structure represents
  3. // response on the */leads .
  4. type Leads struct {
  5. Page int `json:"_page"`
  6. Links struct {
  7. Self struct {
  8. Href string `json:"href"`
  9. } `json:"self"`
  10. Next struct {
  11. Href string `json:"href"`
  12. } `json:"next"`
  13. First struct {
  14. Href string `json:"first"`
  15. } `json:"first"`
  16. Prev struct {
  17. Href string `json:"href"`
  18. } `json:"prev"`
  19. } `json:"_links"`
  20. Embedded struct {
  21. Leads []Lead `json:"leads"`
  22. } `json:"_embedded"`
  23. }