Current section

Files

Jump to
noizu_github lib api structs branch_with_protection.ex
Raw

lib/api/structs/branch_with_protection.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.BranchWithProtection do
@moduledoc false
defstruct [
:_links,
:commit,
:name,
:pattern,
:protected,
:protection,
:protection_url,
:required_approving_review_count
]
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__{
_links: Map.get(json, :_links),
commit: Noizu.Github.Commit.from_json(Map.get(json, :commit)),
name: Map.get(json, :name),
pattern: Map.get(json, :pattern),
protected: Map.get(json, :protected),
protection: Noizu.Github.BranchProtection.from_json(Map.get(json, :protection)),
protection_url: Map.get(json, :protection_url),
required_approving_review_count: Map.get(json, :required_approving_review_count)
}
end
def from_json(other, _headers), do: other
end