Show / Hide Table of Contents

Class PullRequestActivitySummary

Summary of an activity record in a pull request

Inheritance
object
PullRequestActivitySummary
ApprovalActivitySummary
CommentActivitySummary
CommitActivitySummary
PullRequestLifecycleActivitySummary
ReviewerActivitySummary
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
[JsonConverter(typeof(PullRequestActivitySummaryModelConverter))]
public class PullRequestActivitySummary

Properties

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

activity identifier

Remarks

Required

Principal

Declaration
[Required(ErrorMessage = "Principal is required.")]
[JsonProperty(PropertyName = "principal")]
public PrincipalDetails Principal { get; set; }
Property Value
Type Description
PrincipalDetails
Remarks

Required

PullRequestId

Declaration
[Required(ErrorMessage = "PullRequestId is required.")]
[JsonProperty(PropertyName = "pullRequestId")]
public string PullRequestId { get; set; }
Property Value
Type Description
string

pullRequest OCID

Remarks

Required

TimeOccurred

Declaration
[Required(ErrorMessage = "TimeOccurred is required.")]
[JsonProperty(PropertyName = "timeOccurred")]
public DateTime? TimeOccurred { get; set; }
Property Value
Type Description
DateTime?

The time the action was performed. An RFC3339 formatted datetime string

Remarks

Required

In this article
Back to top