interface IGitlabApi
{
    @path("projects/:p/merge_requests/:mr/notes")
    void postCommentForMergeRequest(uint _p, uint _mr, string body);
}

This would work fine if only body was not a reserved keyword. =)
Can I work it around somehow?
Thanx.