I am using the below code to generate payment link with USD currency and options specifically mentioned to show wallet, however I do not see paypal in the check out options. When I generate the link directly from razorpay dashboard, paypal does show. Please review my code and suggest if any changes are needed.
link = client.payment_link.create({ "amount": amount, "currency": "USD", "description": desc, "customer": { "name": "Valued Customer", "email": "customer@example.com", # PayPal needs this to initialize "contact": "XXXXXXX" # Ensure this includes the country code (e.g., +1...) }, "notes": { "plan": plan }, "callback_url": "XXXX", "callback_method": "get", "options":{ "checkout": { "method": { "card": "true", "wallet": "true", } } } })