github v0.7.0 Github.Users.Emails View Source

Link to this section Summary

Link to this section Functions

Link to this function list!(github_client, options \\ []) View Source

User emails

Example

iex> client = %Github.Client{access_token: "access_token"}

iex> client |> Github.Users.Emails.list!(page: 1, per_page: 30)
%Github.Client.Response{
  body: [%{"email" => "email@example.com", "primary" => true, "verified" => true, "visibility" => "private"}],
  status: 200,
  ...
}