GetRepositoryPullRequestsInvokeResult

data class GetRepositoryPullRequestsInvokeResult(val baseRef: String? = null, val baseRepository: String, val headRef: String? = null, val id: String, val owner: String? = null, val results: List<GetRepositoryPullRequestsResult>, val sortBy: String? = null, val sortDirection: String? = null, val state: String? = null)

A collection of values returned by getRepositoryPullRequests.

Constructors

Link copied to clipboard
constructor(baseRef: String? = null, baseRepository: String, headRef: String? = null, id: String, owner: String? = null, results: List<GetRepositoryPullRequestsResult>, sortBy: String? = null, sortDirection: String? = null, state: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val baseRef: String? = null

Name of the ref (branch) of the Pull Request base.

Link copied to clipboard
Link copied to clipboard
val headRef: String? = null

Value of the Pull Request HEAD reference.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard
val owner: String? = null
Link copied to clipboard

Collection of Pull Requests matching the filters. Each of the results conforms to the following scheme:

Link copied to clipboard
val sortBy: String? = null
Link copied to clipboard
val sortDirection: String? = null
Link copied to clipboard
val state: String? = null

the current Pull Request state - can be "open", "closed" or "merged".