Show / Hide Table of Contents

Class SyncRepositoryDetails

Details required for syncing a repository with its upstream.

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

Properties

DestinationBranch

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

The branch in the repository we want to be updated with changes from the upstream.

Remarks

Required

SourceBranch

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

The branch in the upstream repository we want to sync from.

Remarks

Required

In this article
Back to top