case class ApiPullRequest(number: Int, state: String, updated_at: Date, created_at: Date, head: Commit, base: Commit, mergeable: Option[Boolean], merged: Boolean, merged_at: Option[Date], merged_by: Option[ApiUser], title: String, body: String, user: ApiUser, labels: List[ApiLabel], assignees: List[ApiUser], draft: Option[Boolean]) extends Product with Serializable

https://developer.github.com/v3/pulls/

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApiPullRequest
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ApiPullRequest(number: Int, state: String, updated_at: Date, created_at: Date, head: Commit, base: Commit, mergeable: Option[Boolean], merged: Boolean, merged_at: Option[Date], merged_by: Option[ApiUser], title: String, body: String, user: ApiUser, labels: List[ApiLabel], assignees: List[ApiUser], draft: Option[Boolean])

Value Members

  1. val assignee: Option[ApiUser]
  2. val assignees: List[ApiUser]
  3. val base: Commit
  4. val body: String
  5. val comments_url: ApiPath
  6. val commits_url: ApiPath
  7. val created_at: Date
  8. val draft: Option[Boolean]
  9. val head: Commit
  10. val html_url: ApiPath
  11. val id: Int
  12. val labels: List[ApiLabel]
  13. val mergeable: Option[Boolean]
  14. val merged: Boolean
  15. val merged_at: Option[Date]
  16. val merged_by: Option[ApiUser]
  17. val number: Int
  18. def productElementNames: Iterator[String]
    Definition Classes
    Product
  19. val review_comment_url: ApiPath
  20. val review_comments_url: ApiPath
  21. val state: String
  22. val statuses_url: ApiPath
  23. val title: String
  24. val updated_at: Date
  25. val url: ApiPath
  26. val user: ApiUser