Show / Hide Table of Contents

Class CommitAnalyticsAuthorSummary

Object containing summary of Commit Analytics author.

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

Properties

AuthorEmail

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

Author email.

Remarks

Required

AuthorName

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

Author name.

Remarks

Required

In this article
Back to top