Skip to content

Commit

Permalink
Merge pull request #1045 from stripe/remi/codegen-604eb2c
Browse files Browse the repository at this point in the history
Make `original_payout` and `reversed_by` not optional anymore
  • Loading branch information
remi-stripe authored Oct 15, 2020
2 parents cd683a9 + 5341788 commit 23f5ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/2020-08-27/Payouts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ declare module 'stripe' {
/**
* If the payout reverses another, this is the ID of the original payout.
*/
original_payout?: string | Stripe.Payout | null;
original_payout: string | Stripe.Payout | null;

/**
* If the payout was reversed, this is the ID of the payout that reverses this payout.
*/
reversed_by?: string | Stripe.Payout | null;
reversed_by: string | Stripe.Payout | null;

/**
* The source balance this payout came from. One of `card`, `fpx`, or `bank_account`.
Expand Down

0 comments on commit 23f5ccb

Please sign in to comment.