Skip to content

Commit

Permalink
Codegen for openapi b3d9530
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Nov 20, 2020
1 parent b74e905 commit 181c51f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@ declare module 'stripe' {
*/
giropay_payments?: Capabilities.GiropayPayments;

/**
* The status of the GrabPay payments capability of the account, or whether the account can directly process GrabPay charges.
*/
grabpay_payments?: Capabilities.GrabpayPayments;

/**
* The status of the iDEAL payments capability of the account, or whether the account can directly process iDEAL charges.
*/
Expand Down Expand Up @@ -263,6 +268,8 @@ declare module 'stripe' {

type GiropayPayments = 'active' | 'inactive' | 'pending';

type GrabpayPayments = 'active' | 'inactive' | 'pending';

type IdealPayments = 'active' | 'inactive' | 'pending';

type JcbPayments = 'active' | 'inactive' | 'pending';
Expand Down Expand Up @@ -978,6 +985,11 @@ declare module 'stripe' {
*/
giropay_payments?: Capabilities.GiropayPayments;

/**
* The grabpay_payments capability.
*/
grabpay_payments?: Capabilities.GrabpayPayments;

/**
* The ideal_payments capability.
*/
Expand Down Expand Up @@ -1093,6 +1105,13 @@ declare module 'stripe' {
requested?: boolean;
}

interface GrabpayPayments {
/**
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
*/
requested?: boolean;
}

interface IdealPayments {
/**
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
Expand Down Expand Up @@ -1886,6 +1905,11 @@ declare module 'stripe' {
*/
giropay_payments?: Capabilities.GiropayPayments;

/**
* The grabpay_payments capability.
*/
grabpay_payments?: Capabilities.GrabpayPayments;

/**
* The ideal_payments capability.
*/
Expand Down Expand Up @@ -2001,6 +2025,13 @@ declare module 'stripe' {
requested?: boolean;
}

interface GrabpayPayments {
/**
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
*/
requested?: boolean;
}

interface IdealPayments {
/**
* Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
Expand Down

0 comments on commit 181c51f

Please sign in to comment.