WebhookEndpointCreateOptions constructor

const WebhookEndpointCreateOptions({
  1. WebhookEndpointApiVersion? apiVersion,
  2. bool? connect,
  3. String? description,
  4. required List<WebhookEndpointEnabledEventsItem> enabledEvents,
  5. List<String>? expand,
  6. Map<String, String>? metadata,
  7. required String url,
})

Implementation

const WebhookEndpointCreateOptions({
  this.apiVersion,
  this.connect,
  this.description,
  required this.enabledEvents,
  this.expand,
  this.metadata,
  required this.url,
});