Show / Hide Table of Contents

Class RepositoryPathCommitDetails

Details about the last commit that modified a repository path.

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

Properties

Author

Declaration
[JsonProperty(PropertyName = "author")]
public PrincipalDetails Author { get; set; }
Property Value
Type Description
PrincipalDetails

CommitId

Declaration
[JsonProperty(PropertyName = "commitId")]
public string CommitId { get; set; }
Property Value
Type Description
string

The commit hash of the last commit.

Message

Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type Description
string

The commit message of the last commit.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

Timestamp when this commit was made.

In this article
Back to top