Show / Hide Table of Contents

Class GithubFilter

The filter for GitHub events.

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

Properties

Events

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

The events, for example, PUSH, PULL_REQUEST_MERGE.

Exclude

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

Include

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