Show / Hide Table of Contents

Class BuildRunArgumentCollection

Specifies list of arguments passed along with the build run.

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

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<BuildRunArgument> Items { get; set; }
Property Value
Type Description
List<BuildRunArgument>

List of arguments provided at the time of running the build.

Remarks

Required

In this article
Back to top