package domain

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Authorization (id: Int, url: String, token: String) extends Product with Serializable
  2. case class Authorize (url: String, state: String) extends Product with Serializable
  3. case class Commit (sha: String, message: String, date: String, url: String, login: Option[String], avatar_url: Option[String], author_url: Option[String]) extends Product with Serializable
  4. case class EditIssueRequest (state: String, title: String, body: String, milestone: Option[Int], labels: List[String], assignees: List[String]) extends Product with Serializable
  5. case class Gist (url: String, id: String, description: String, public: Boolean) extends Product with Serializable
  6. case class GistFile (content: String) extends Product with Serializable
  7. case class Issue (id: Int, title: String, body: String, url: String, repository_url: String, labels_url: String, comments_url: String, events_url: String, html_url: String, number: Int, state: String, user: User, assignee: Option[User], labels: List[Label] = List.empty, locked: Option[Boolean], comments: Int, pull_request: Option[PullRequest], closed_at: Option[String], created_at: String, updated_at: String) extends Product with Serializable
  8. sealed trait IssueState extends SearchParam
  9. sealed trait IssueType extends SearchParam
  10. case class Label (id: Option[Int], name: String, url: String, color: String, default: Option[Boolean]) extends Product with Serializable
  11. case class LabelParam (label: String, exclude: Boolean = false) extends SearchParam with Product with Serializable
  12. case class NewAuthRequest (scopes: List[String], note: String, client_id: String, client_secret: String) extends Product with Serializable
  13. case class NewBlobRequest (content: String, encoding: Option[String]) extends Product with Serializable
  14. case class NewCommitRequest (message: String, tree: String, parents: List[String], author: Option[RefCommitAuthor]) extends Product with Serializable
  15. case class NewGistRequest (description: String, public: Boolean, files: Map[String, GistFile]) extends Product with Serializable
  16. case class NewIssueRequest (title: String, body: String, milestone: Option[Int], labels: List[String], assignees: List[String]) extends Product with Serializable
  17. case class NewOAuthRequest (client_id: String, client_secret: String, code: String, redirect_uri: String, state: String) extends Product with Serializable
  18. case class NewTreeRequest (base_tree: Option[String], tree: List[TreeData]) extends Product with Serializable
  19. case class OAuthToken (access_token: String, token_type: String, scope: String) extends Product with Serializable
  20. sealed trait OwnerParam extends SearchParam
  21. case class OwnerParamInRepository (repo: String) extends OwnerParam with Product with Serializable
  22. case class OwnerParamOwnedByUser (user: String) extends OwnerParam with Product with Serializable
  23. case class Pagination (page: Int, per_page: Int) extends Product with Serializable
  24. case class PullRequest (url: Option[String], html_url: Option[String], diff_url: Option[String], patch_url: Option[String]) extends Product with Serializable
  25. case class Ref (ref: String, url: String, object: RefObject) extends Product with Serializable
  26. case class RefCommit (sha: String, url: String, author: RefCommitAuthor, committer: RefCommitAuthor, message: String, tree: RefInfo, parents: List[RefInfo]) extends Product with Serializable
  27. case class RefCommitAuthor (date: String, name: String, email: String) extends Product with Serializable
  28. class RefInfo extends AnyRef
  29. case class RefObject (type: String, sha: String, url: String) extends RefInfo with Product with Serializable
  30. case class RepoStatus (size: Int, stargazers_count: Int, watchers_count: Int, forks_count: Int, open_issues_count: Int, open_issues: Int, watchers: Int, network_count: Int, subscribers_count: Int, has_issues: Boolean, has_downloads: Boolean, has_wiki: Boolean, has_pages: Boolean) extends Product with Serializable
  31. case class RepoUrls (url: String, html_url: String, git_url: String, ssh_url: String, clone_url: String, svn_url: String, otherUrls: Map[String, String]) extends Product with Serializable
  32. case class Repository (id: Int, name: String, full_name: String, owner: User, private: Boolean, description: String, fork: Boolean, urls: RepoUrls, created_at: String, updated_at: String, pushed_at: String, homepage: Option[String] = None, language: Option[String] = None, status: RepoStatus, organization: Option[User] = None) extends Product with Serializable
  33. case class SearchIn (values: Set[SearchInValue]) extends SearchParam with Product with Serializable
  34. sealed trait SearchInValue extends AnyRef
  35. case class SearchIssuesResult (total_count: Int, incomplete_results: Boolean, items: List[Issue]) extends Product with Serializable
  36. sealed trait SearchParam extends AnyRef
  37. sealed abstract class TreeData extends Product with Serializable
  38. case class TreeDataBlob (path: String, mode: String, type: String, content: String) extends TreeData with Product with Serializable
  39. case class TreeDataResult (path: String, mode: String, type: String, size: Option[Int], sha: String, url: String) extends Product with Serializable
  40. case class TreeDataSha (path: String, mode: String, type: String, sha: String) extends TreeData with Product with Serializable
  41. case class TreeResult (sha: String, url: String, tree: List[TreeDataResult]) extends RefInfo with Product with Serializable
  42. case class UpdateReferenceRequest (sha: String, force: Option[Boolean]) extends Product with Serializable
  43. case class User (id: Int, login: String, avatar_url: String, html_url: String, name: Option[String] = None, email: Option[String] = None, company: Option[String] = None, blog: Option[String] = None, location: Option[String] = None, bio: Option[String] = None) extends Product with Serializable

Ungrouped