Show / Hide Table of Contents

Class TriggerInfo

Trigger details that need to be used for the BuildRun

Inheritance
object
TriggerInfo
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 TriggerInfo

Properties

Actions

Declaration
[Required(ErrorMessage = "Actions is required.")]
[JsonProperty(PropertyName = "actions")]
public List<TriggerAction> Actions { get; set; }
Property Value
Type Description
List<TriggerAction>

The list of actions that are to be performed for this Trigger

Remarks

Required

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Name for Trigger.

In this article
Back to top