class Github::Authorizations

def delete(*args)

Other tags:
    Api: - public
def delete(*args)
  raise_authentication_error unless authenticated?
  arguments(args, required: [:authorization_id])
  delete_request("/authorizations/#{authorization_id}", arguments.params)
end