webhookToolApiSchemaConfigOutputMethodFromJson function
WebhookToolApiSchemaConfigOutputMethod
webhookToolApiSchemaConfigOutputMethodFromJson(
- Object? webhookToolApiSchemaConfigOutputMethod, [
- WebhookToolApiSchemaConfigOutputMethod? defaultValue
Implementation
enums.WebhookToolApiSchemaConfigOutputMethod
webhookToolApiSchemaConfigOutputMethodFromJson(
Object? webhookToolApiSchemaConfigOutputMethod, [
enums.WebhookToolApiSchemaConfigOutputMethod? defaultValue,
]) {
return enums.WebhookToolApiSchemaConfigOutputMethod.values.firstWhereOrNull(
(e) => e.value == webhookToolApiSchemaConfigOutputMethod) ??
defaultValue ??
enums.WebhookToolApiSchemaConfigOutputMethod.swaggerGeneratedUnknown;
}