Class PullRequestHead
Pull request head (source) branch info.
public record PullRequestHead : IEquatable<PullRequestHead>
- Inheritance
-
PullRequestHead
- Implements
- Inherited Members
Properties
Ref
Branch name of the head (source) branch.
[JsonPropertyName("ref")]
public string Ref { get; init; }
Property Value
Repo
Repository containing the source branch (for fork PRs).
[JsonPropertyName("repo")]
public RepositoryInfo? Repo { get; init; }
Property Value
Sha
Commit SHA at the head of the source branch.
[JsonPropertyName("sha")]
public string Sha { get; init; }