Show / Hide Table of Contents

Class DevopsCodeRepositoryFilter

The filter for GitLab events.

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

Properties

Events

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

The events, for example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED.

Exclude

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

Include

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