Class CommitActivitySummary
activity describing commit updates to a pull request
Inherited Members
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