Skip to content

Commit

Permalink
Codegen for openapi bf2fb3c (#1276)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe authored Oct 20, 2021
1 parent 567da28 commit 0303962
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ declare module 'stripe' {
/**
* The controller type. Can be `application`, if a Connect application controls the account, or `account`, if the account controls itself.
*/
type?: Controller.Type;
type: Controller.Type;
}

namespace Controller {
Expand Down
5 changes: 5 additions & 0 deletions types/2020-08-27/Charges.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,11 @@ declare module 'stripe' {
}

interface Alipay {
/**
* Uniquely identifies this particular Alipay account. You can use this attribute to check whether two Alipay accounts are the same.
*/
buyer_id?: string;

/**
* Uniquely identifies this particular Alipay account. You can use this attribute to check whether two Alipay accounts are the same.
*/
Expand Down
2 changes: 1 addition & 1 deletion types/2020-08-27/PaymentMethods.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ declare module 'stripe' {
): Promise<Stripe.Response<Stripe.PaymentMethod>>;

/**
* Returns a list of PaymentMethods for a given Customer
* Returns a list of PaymentMethods. For listing a customer's payment methods, you should use [List a Customer's PaymentMethods](https://stripe.com/docs/api/payment_methods/customer_list)
*/
list(
params: PaymentMethodListParams,
Expand Down

0 comments on commit 0303962

Please sign in to comment.