class Github::Client::Users::Emails

def list(*args)

Other tags:
    Api: - public

Returns:
  • (Hash) -
def list(*args)
  arguments(args)
  response = get_request("/user/emails", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end