copyWith method
WebhookToolConfigOutput
copyWith({
- String? id,
- String? name,
- String? description,
- int? responseTimeoutSecs,
- String? type,
- WebhookToolApiSchemaConfigOutput? apiSchema,
- DynamicVariablesConfig? dynamicVariables,
Implementation
WebhookToolConfigOutput copyWith(
{String? id,
String? name,
String? description,
int? responseTimeoutSecs,
String? type,
WebhookToolApiSchemaConfigOutput? apiSchema,
DynamicVariablesConfig? dynamicVariables}) {
return WebhookToolConfigOutput(
id: id ?? this.id,
name: name ?? this.name,
description: description ?? this.description,
responseTimeoutSecs: responseTimeoutSecs ?? this.responseTimeoutSecs,
type: type ?? this.type,
apiSchema: apiSchema ?? this.apiSchema,
dynamicVariables: dynamicVariables ?? this.dynamicVariables);
}