hyperswitch
hyperswitch copied to clipboard
feat(connector): [Paypal] Add payout flow for wallet(Paypal and Venmo)
Type of Change
- [ ] Bugfix
- [x] New feature
- [ ] Enhancement
- [ ] Refactoring
- [ ] Dependency updates
- [ ] Documentation
- [ ] CI/CD
Description
Paypal and Venmo wallet is added for payout
Additional Changes
- [x] This PR modifies the API contract Paypal
"payout_method_data": {
"wallet": {
"paypal": {
"email": "[email protected]",
"telephone_number": "16608213349",
"paypal_id": "G83KXTJ5EHCQ2"
}
}
},
Venmo
"payout_method_data": {
"wallet": {
"venmo": {
"telephone_number": "16608213349"
}
}
},
Motivation and Context
How did you test it?
Checklist
- [x] I formatted the code
cargo +nightly fmt --all - [x] I addressed lints thrown by
cargo clippy - [x] I reviewed the submitted code
- [ ] I added unit tests for my changes where possible
- [ ] I added a CHANGELOG entry if applicable