Show / Hide Table of Contents

Class CreateOrUpdateGitRefDetails

The information needed to create a reference. If the reference already exists, then it can be used to update the reference.

Inheritance
object
CreateOrUpdateGitRefDetails
CreateOrUpdateGitBranchDetails
CreateOrUpdateGitTagDetails
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
[JsonConverter(typeof(CreateOrUpdateGitRefDetailsModelConverter))]
public class CreateOrUpdateGitRefDetails

Properties

RefName

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

The name of the reference to create or update.

Remarks

Required

In this article
Back to top