Package-level declarations

Types

Link copied to clipboard
data class BlobContent(val sha: String, val nodeId: String, val size: Long, val url: String, val content: String, val encoding: BlobContent.Encoding)
Link copied to clipboard
data class Commit(    val sha: String,     val commit: Commit.CommitDetails,     val htmlUrl: String,     val author: Commit.Author?,     val committer: Commit.Committer?)
Link copied to clipboard
Link copied to clipboard
interface Content
Link copied to clipboard
data class FileContent(val path: String, val fileType: String, val content: String)
Link copied to clipboard
data class Issue(    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 user: Issue.User,     val assignee: Issue.User?,     val assignees: List<Issue.User>,     val labels: List<Issue.Label>)
Link copied to clipboard
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)
Link copied to clipboard
interface QueryParameters
Link copied to clipboard
data class Repository(    val id: Long,     val name: String,     val fullName: String,     val description: String?,     val htmlUrl: String,     val createdAt: String,     val updatedAt: String,     val pushedAt: String,     val forks: Int,     val watchers: Int,     val owner: Repository.Owner)
Link copied to clipboard
data class TreeRef(val sha: String, val url: String, val tree: List<TreeRef.TreeEntry>)