MitjaBezensek / SharpBucket

SharpBucket is a .Net wrapper for the Bitbucket's REST API.
MIT License
67 stars 59 forks source link

The PullRequest POCO is missing an HTML link #139

Closed penev92 closed 4 years ago

penev92 commented 4 years ago

The PullRequest POCO uses the Links POCO, which doesn't have an HTML property. Inspecting the API's raw response (for the GetPullRequest_ExistingPublicPullRequest_ReturnValidInfo unit test, for example), the JSON contains such a link:

    "html": {
        "href": "https://bitbucket.org/mirror/mercurial/pull-requests/2"
    },

Shall I create a new PullRequestLinks class?