class BitbucketServerClient

def post(url, body, path, position)

def post(url, body, path, position)
  body = {
    text: body,
    anchor: {
      line: position,
      lineType: 'ADDED',
      path: path,
      srcPath: path
    }
  }
  self.class.post(url, body: body.to_json, headers: @headers)
end