Organization defines model for organization.
| 247 | |
| 248 | // Organization defines model for organization. |
| 249 | type Organization struct { |
| 250 | // Apid A value used as a parameter when referencing this organization. |
| 251 | Apid string `json:"apid"` |
| 252 | |
| 253 | // Name The name for this organization. |
| 254 | Name string `json:"name"` |
| 255 | |
| 256 | // Slug The slugified name for this organization. |
| 257 | Slug string `json:"slug"` |
| 258 | } |
| 259 | |
| 260 | // Organizations defines model for organizations. |
| 261 | type Organizations struct { |
nothing calls this directly
no outgoing calls
no test coverage detected