Show / Hide Table of Contents

Class VbsFilter

The filter for VBS events.

Inheritance
object
Filter
VbsFilter
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 VbsFilter : Filter

Properties

Events

Declaration
[JsonProperty(PropertyName = "events", ItemConverterType = typeof(ResponseEnumConverter))]
public List<VbsFilter.EventsEnum> Events { get; set; }
Property Value
Type Description
List<VbsFilter.EventsEnum>

The events, for example, PUSH, PULL_REQUEST_MERGE.

Exclude

Declaration
[JsonProperty(PropertyName = "exclude")]
public VbsFilterExclusionAttributes Exclude { get; set; }
Property Value
Type Description
VbsFilterExclusionAttributes

Include

Declaration
[JsonProperty(PropertyName = "include")]
public VbsFilterAttributes Include { get; set; }
Property Value
Type Description
VbsFilterAttributes
In this article
Back to top