Show / Hide Table of Contents

Class CommitActivitySummary

activity describing commit updates to a pull request

Inheritance
object
PullRequestActivitySummary
CommitActivitySummary
Inherited Members
PullRequestActivitySummary.Id
PullRequestActivitySummary.Principal
PullRequestActivitySummary.PullRequestId
PullRequestActivitySummary.TimeOccurred
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 CommitActivitySummary : PullRequestActivitySummary

Properties

CommitsAdded

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

list of commits added to a PR source branch after git push

Remarks

Required

CommitsRemoved

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

list of commits removed from a PR source branch after git push

Remarks

Required

In this article
Back to top