Show / Hide Table of Contents

Class BuildSourceCollection

Collection of build sources.

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

Properties

Items

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

Collection of build sources. In case of UPDATE operation, replaces existing build sources list. Merging with existing build sources is not supported.

Remarks

Required

In this article
Back to top