PullRequest

data class PullRequest(    val id: Long,     val number: Int,     val title: String,     val body: String?,     val state: String,     val htmlUrl: String,     val createdAt: String,     val updatedAt: String,     val closedAt: String?,     val mergedAt: String?,     val user: PullRequest.User,     val assignee: PullRequest.User?,     val assignees: List<PullRequest.User>,     val requestedReviewers: List<PullRequest.User>,     val head: PullRequest.Branch,     val base: PullRequest.Branch)

Constructors

Link copied to clipboard
constructor(    id: Long,     number: Int,     title: String,     body: String?,     state: String,     htmlUrl: String,     createdAt: String,     updatedAt: String,     closedAt: String?,     mergedAt: String?,     user: PullRequest.User,     assignee: PullRequest.User?,     assignees: List<PullRequest.User>,     requestedReviewers: List<PullRequest.User>,     head: PullRequest.Branch,     base: PullRequest.Branch)

Types

Link copied to clipboard
data class Branch(val label: String, val ref: String, val sha: String)
Link copied to clipboard
data class User(val login: String, val id: Long, val avatarUrl: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val body: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: Long
Link copied to clipboard
Link copied to clipboard
val number: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard