Show / Hide Table of Contents

Class ForkSyncStatusSummary

Object that contains the sync status for a specific branch name.

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

Properties

BranchName

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

The branch in the child repository we are checking the sync status of.

Remarks

Required

RepositoryId

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

The OCID of the child repository.

Remarks

Required

SyncStatus

Declaration
[Required(ErrorMessage = "SyncStatus is required.")]
[JsonProperty(PropertyName = "syncStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ForkSyncStatusSummary.SyncStatusEnum? SyncStatus { get; set; }
Property Value
Type Description
ForkSyncStatusSummary.SyncStatusEnum?

Sync status for the provided branch.

Remarks

Required

In this article
Back to top