View Source GitHub.PullRequest.Head (GitHub REST API Client v0.3.0)

Provides struct and types for a PullRequest.Head

Link to this section Summary

Link to this section Types

@type minimal() :: %GitHub.PullRequest.Head{
  __info__: map(),
  label: term(),
  ref: String.t(),
  repo: GitHub.PullRequest.HeadRepo.minimal(),
  sha: String.t(),
  user: term()
}
@type simple() :: %GitHub.PullRequest.Head{
  __info__: map(),
  label: String.t(),
  ref: String.t(),
  repo: GitHub.Repository.t(),
  sha: String.t(),
  user: GitHub.User.simple() | nil
}
@type t() :: %GitHub.PullRequest.Head{
  __info__: map(),
  label: String.t(),
  ref: String.t(),
  repo: GitHub.PullRequest.HeadRepo.t() | nil,
  sha: String.t(),
  user: GitHub.PullRequest.HeadUser.t()
}