| 322 | } |
| 323 | |
| 324 | type Notification struct { |
| 325 | URI string `json:"uri"` |
| 326 | CID string `json:"cid"` |
| 327 | Author User `json:"author"` |
| 328 | Reason string `json:"reason"` |
| 329 | ReasonSubject string `json:"reasonSubject"` |
| 330 | Record PostInteractionRecord `json:"record"` // i think this is the correct object? |
| 331 | IsRead bool `json:"isRead"` |
| 332 | IndexedAt time.Time `json:"indexedAt"` |
| 333 | } |
| 334 | |
| 335 | type Notifications struct { |
| 336 | Notifications []Notification `json:"notifications"` |
nothing calls this directly
no outgoing calls
no test coverage detected