RepoUrlKeys
github4s.domain.RepoUrlKeys$
object RepoUrlKeys
Attributes
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
- Self type
- RepoUrlKeys.type
Members list
Concise view
Type members
Classlikes
final case class CommitComparisonResponse(status: String, ahead_by: Int, behind_by: Int, total_commits: Int, url: Option[String], html_url: Option[String], permalink_url: Option[String], diff_url: Option[String], patch_url: Option[String], base_commit: Option[Commit], merge_base_commit: Option[Commit], commits: Seq[Commit], files: Seq[FileComparison])
Attributes
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
object FileComparison
Attributes
- Companion:
- trait
- Graph
- Supertypes
- trait Sumtrait Mirrorclass Objecttrait Matchableclass Any
- Self type
- FileComparison.type
A file comparison that contains information on the changes to a file.
There are two subtypes: FileComparisonNotRenamed and FileComparisonRenamed that have different guarantees.
A file comparison that contains information on the changes to a file.
There are two subtypes: FileComparisonNotRenamed and FileComparisonRenamed that have different guarantees.
FileComparisonNotRenamedguarantees that thepatchfield exists, does not have aprevious_filenamefield.FileComparisonRenamedguarantees that theprevious_filenamefield exists and sometimes contains apatchfield.
To get values from these fields, there are helper methods getPatch and getPreviousFilename, though
it is recomended to match on your FileComparison value to determine which type it is, to remove ambiguity.
Attributes
- Companion:
- object
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
- Known subtypes
- class FileComparisonNotRenamedclass FileComparisonRenamed