Show / Hide Table of Contents

Class GitlabFilter

The filter for GitLab events.

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

Properties

Events

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

The events, for example, PUSH, PULL_REQUEST_MERGE.

Exclude

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

Include

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