package
stash
Type Members
-
case class
Commit(hash: String, authorName: String, parents: Option[Seq[String]], authorTimestamp: DateTime, message: String) extends Product with Serializable
-
case class
CommitComment(id: Long, author: User, content: String, createdDate: DateTime) extends Product with Serializable
-
case class
PullRequest(id: Long, title: String, description: Option[String], state: String, createdDate: DateTime, updatedDate: DateTime, sourceRepository: String, sourceBranch: String, destRepository: String, destBranch: String, author: User) extends Product with Serializable
-
case class
Repository(slug: String, name: String, scm: String, public: Boolean, cloneUrl: String, cloneUrls: Seq[RepositoryUrl]) extends Product with Serializable
-
-
case class
SimpleRepository(name: String, description: String, scm: String, created_on: DateTime, updated_on: DateTime, owner: String, size: Long, has_issues: Boolean, is_private: Boolean, language: String) extends Product with Serializable
-
case class
SshKey(id: Long, key: String, label: String) extends Product with Serializable
-
case class
SshKeySimple(key: String) extends Product with Serializable
-
case class
User(username: String, email: String, displayName: String) extends Product with Serializable