This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 8fac16d1d1ac Camel-Stripe: Add operations enum (#20308)
8fac16d1d1ac is described below

commit 8fac16d1d1ac8b4063763b5b92fff1ffe5d2dacf
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Dec 9 11:27:34 2025 +0100

    Camel-Stripe: Add operations enum (#20308)
    
    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")

Reply via email to