class Github::Client::Issues::Assignees

def check(*args)

Other tags:
    Api: - public
def check(*args)
  arguments(args, required: [:owner, :repo, :assignee])
  params = arguments.params
  get_request("/repos/#{arguments.owner}/#{arguments.repo}/assignees/#{arguments.assignee}",params)
  true
rescue Github::Error::NotFound
  false
end

def list(*args)

Other tags:
    Api: - public
def list(*args)
  arguments(args, required: [:owner, :repo])
  response = get_request("/repos/#{arguments.owner}/#{arguments.repo}/assignees", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end