| 7 | ) |
| 8 | |
| 9 | type Quota struct { |
| 10 | // GUID is the unique ID of the organization quota. |
| 11 | GUID string `json:"guid,omitempty"` |
| 12 | // Name is the name of the organization quota |
| 13 | Name string `json:"name"` |
| 14 | // Apps contain the various limits that are associated with applications |
| 15 | Apps AppLimit `json:"apps"` |
| 16 | // Services contain the various limits that are associated with services |
| 17 | Services ServiceLimit `json:"services"` |
| 18 | // Routes contain the various limits that are associated with routes |
| 19 | Routes RouteLimit `json:"routes"` |
| 20 | } |
| 21 | |
| 22 | type AppLimit struct { |
| 23 | TotalMemory *types.NullInt `json:"total_memory_in_mb,omitempty"` |