| 390 | } |
| 391 | |
| 392 | type ArticleIntIDID struct { |
| 393 | ID IntID `jsonapi:"primary,articles"` |
| 394 | Title string `jsonapi:"attribute" json:"title"` |
| 395 | } |
| 396 | |
| 397 | func (a *ArticleIntIDID) UnmarshalID(id string) error { |
| 398 | v, err := strconv.Atoi(id) |
nothing calls this directly
no outgoing calls
no test coverage detected