WebhookToolConfigInput constructor

const WebhookToolConfigInput({
  1. String? id,
  2. required String name,
  3. required String description,
  4. int? responseTimeoutSecs,
  5. String? type,
  6. required WebhookToolApiSchemaConfigInput apiSchema,
  7. DynamicVariablesConfig? dynamicVariables,
})

Implementation

const WebhookToolConfigInput({
  this.id,
  required this.name,
  required this.description,
  this.responseTimeoutSecs,
  this.type,
  required this.apiSchema,
  this.dynamicVariables,
});