-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for the Payout Reverse API #1129
Conversation
public void testReverse() throws StripeException { | ||
final Payout resource = getPayoutFixture(); | ||
|
||
final Payout reverseledPayout = resource.reverse(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
final Payout reverseledPayout = resource.reverse(); | |
final Payout reversedPayout = resource.reverse(); |
|
||
final Payout reverseledPayout = resource.reverse(); | ||
|
||
assertNotNull(reverseledPayout); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assertNotNull(reverseledPayout); | |
assertNotNull(reversedPayout); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, suggested a fix for typoed variable name in test
4a396fb
to
799ca4c
Compare
Fixed, nice catch, will merge after that! |
Codegen for openapi 4bd4c01
r? @richardm-stripe
cc @stripe/api-libraries