gitlab4j-api icon indicating copy to clipboard operation
gitlab4j-api copied to clipboard

`Issue` model does not include parsing `References`

Open hsebouai opened this issue 3 years ago • 0 comments

Normally, the issues have a reference object on them:

{
    "id": 6424,
    "iid": 1,
    "project_id": 234,
    "title": "Issue in progress",
    ...
    "type": "ISSUE",
    ...

    "references": {
        "short": "#1",
        "relative": "#1",
        "full": "<REDACTED_FOR_PRIVCAY>#1"
    },
   ...
}

However, the parsed Issue model does not de-serialize that object.

hsebouai avatar Oct 18 '22 19:10 hsebouai