Current section
Files
Jump to
Current section
Files
lib/api/structs/issues_event.ex
# Generated by `mix github.gen` from docs/github-api/api.github.com.json.
# Do not edit by hand; re-run the task instead.
defmodule Noizu.Github.IssuesEvent do
@moduledoc false
defstruct [
:action,
:assignee,
:assignees,
:issue,
:label,
:labels
]
def from_json(json, headers \\ [])
def from_json(nil, _headers), do: nil
def from_json(list, headers) when is_list(list) do
Enum.map(list, &from_json(&1, headers))
end
def from_json(json, _headers) when is_map(json) do
%__MODULE__{
action: Map.get(json, :action),
assignee: Noizu.Github.SimpleUser.from_json(Map.get(json, :assignee)),
assignees:
Enum.map(Map.get(json, :assignees) || [], &Noizu.Github.SimpleUser.from_json(&1)),
issue: Noizu.Github.Issue.from_json(Map.get(json, :issue)),
label: Noizu.Github.Label.from_json(Map.get(json, :label)),
labels: Enum.map(Map.get(json, :labels) || [], &Noizu.Github.Label.from_json(&1))
}
end
def from_json(other, _headers), do: other
end