Skip to content

Commit 23f5ccb

Browse files
authored
Merge pull request #1045 from stripe/remi/codegen-604eb2c
Make `original_payout` and `reversed_by` not optional anymore
2 parents cd683a9 + 5341788 commit 23f5ccb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

types/2020-08-27/Payouts.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ declare module 'stripe' {
9494
/**
9595
* If the payout reverses another, this is the ID of the original payout.
9696
*/
97-
original_payout?: string | Stripe.Payout | null;
97+
original_payout: string | Stripe.Payout | null;
9898

9999
/**
100100
* If the payout was reversed, this is the ID of the payout that reverses this payout.
101101
*/
102-
reversed_by?: string | Stripe.Payout | null;
102+
reversed_by: string | Stripe.Payout | null;
103103

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

0 commit comments

Comments
 (0)