WebhookDefinition constructor

WebhookDefinition({
  1. required WebhookAuthenticationType authentication,
  2. required WebhookAuthConfiguration authenticationConfiguration,
  3. required List<WebhookFilterRule> filters,
  4. required String name,
  5. required String targetAction,
  6. required String targetPipeline,
})

Implementation

WebhookDefinition({
  required this.authentication,
  required this.authenticationConfiguration,
  required this.filters,
  required this.name,
  required this.targetAction,
  required this.targetPipeline,
});