Show / Hide Table of Contents

Class PullRequestCollection

Results of a Pull Request search. Contains both PullRequestSummary items and other information, such as metadata.

Inheritance
object
PullRequestCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class PullRequestCollection

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<PullRequestSummary> Items { get; set; }
Property Value
Type Description
List<PullRequestSummary>

List of Pull Requests.

Remarks

Required

In this article
Back to top