Class WebhookContext
The webhook context.
[DataContract]
public class WebhookContext
- Inheritance
-
WebhookContext
- Inherited Members
Properties
Actor
Gets or sets the webhook actor details.
[DataMember(Name = "actor", EmitDefaultValue = false)]
[JsonProperty("actor")]
public WebhookActorDetails Actor { get; set; }
Property Value
EventType
Gets or Sets EventType
[DataMember(Name = "eventType", EmitDefaultValue = false)]
[JsonProperty("eventType")]
public WebHookEventType EventType { get; set; }
Property Value
PreviousState
Gets or sets the previousState.
[DataMember(Name = "previousState", EmitDefaultValue = false)]
[JsonProperty("previousState")]
public dynamic PreviousState { get; set; }
Property Value
- dynamic