Show / Hide Table of Contents

Class GitlabServerFilter

The filter for GitLab self-hosted events.

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

Properties

Events

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

The events, for example, PUSH, PULL_REQUEST_MERGE.

Exclude

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

Include

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