/// <summary> /// Creates a new milestone in an issue tracker. You must supply a name value in the form of a string. /// The server creates the id for you and it appears in the return value. /// Public and private issue trackers require the caller to authenticate with an account that has appropriate authorisation. /// </summary> /// <param name="milestone">The milestone.</param> /// <returns>The response from the BitBucket API.</returns> public Milestone PostMilestone(Milestone milestone) { return(_repositoriesEndPoint.PostMilestone(milestone)); }