added default_source to ISubscription in stripe (#33902)

This commit is contained in:
Saransh Kataria
2019-03-15 10:24:25 -07:00
committed by Wesley Wigham
parent d31733647c
commit 8085f1a7bd

View File

@@ -5126,6 +5126,13 @@ declare namespace Stripe {
* invoice with payment instructions.
*/
billing: SubscriptionBilling;
/**
* ID of the default payment source for the subscription.
* It must belong to the customer associated with the subscription and be in a chargeable state.
* If not set, defaults to the customers default source. [Expandable]
*/
default_source: string;
}
interface ISubscriptionCustCreationOptions extends IDataOptionsWithMetadata {