View Source GitHub.Commit.Comparison (GitHub REST API Client v0.1.1)

Provides struct and type for a Commit.Comparison

Link to this section Summary

Link to this section Types

@type t() :: %GitHub.Commit.Comparison{
  __info__: map(),
  ahead_by: integer(),
  base_commit: GitHub.Commit.t(),
  behind_by: integer(),
  commits: [GitHub.Commit.t()],
  diff_url: String.t(),
  files: [GitHub.DiffEntry.t()] | nil,
  html_url: String.t(),
  merge_base_commit: GitHub.Commit.t(),
  patch_url: String.t(),
  permalink_url: String.t(),
  status: String.t(),
  total_commits: integer(),
  url: String.t()
}