workPackages.go 252 B

123456789101112
  1. package types
  2. type WorkPackages struct {
  3. Type string `json:"_type"`
  4. Links Links `json:"_links"`
  5. Total int `json:"total"`
  6. Count int `json:"count"`
  7. Embedded struct{
  8. Elements []Element `json:"elements"`
  9. } `json:"_embedded"`
  10. }