This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch stripe-enum in repository https://gitbox.apache.org/repos/asf/camel.git
commit 240aeaa377203395d0f81f57fa03e93acc6f9ddc Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Dec 9 09:50:50 2025 +0100 Camel-Stripe: Add operations enum Signed-off-by: Andrea Cosentino <[email protected]> --- .../java/org/apache/camel/component/stripe/StripeConfiguration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeConfiguration.java b/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeConfiguration.java index cdc6267cb4b8..080db95eb2e7 100644 --- a/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeConfiguration.java +++ b/components/camel-stripe/src/main/java/org/apache/camel/component/stripe/StripeConfiguration.java @@ -28,7 +28,8 @@ import org.apache.camel.spi.UriPath; public class StripeConfiguration { @UriPath - @Metadata(required = true, description = "The Stripe operation to perform") + @Metadata(required = true, description = "The Stripe operation to perform", + enums = "charges,customers,paymentIntents,paymentMethods,refunds,subscriptions,invoices,products,prices,balanceTransactions") private String operation; @UriParam(label = "security", secret = true, description = "The Stripe API key for authentication")
