Show / Hide Table of Contents

Class PullRequestChangeSummaryMetrics

Response object for obtaining summary metric of Pull Request changed files.

Inheritance
object
PullRequestChangeSummaryMetrics
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 PullRequestChangeSummaryMetrics

Properties

AddedLinesCount

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

The number of lines added in whole difference.

Remarks

Required

ChangedFilesCount

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

The number of lines added in whole difference.

Remarks

Required

DeletedLinesCount

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

The number of lines deleted in whole difference.

Remarks

Required

In this article
Back to top