diff --git a/types/2020-08-27/Accounts.d.ts b/types/2020-08-27/Accounts.d.ts index c29da75805..befe455ef6 100644 --- a/types/2020-08-27/Accounts.d.ts +++ b/types/2020-08-27/Accounts.d.ts @@ -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. */ @@ -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'; @@ -978,6 +985,11 @@ declare module 'stripe' { */ giropay_payments?: Capabilities.GiropayPayments; + /** + * The grabpay_payments capability. + */ + grabpay_payments?: Capabilities.GrabpayPayments; + /** * The ideal_payments capability. */ @@ -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. @@ -1886,6 +1905,11 @@ declare module 'stripe' { */ giropay_payments?: Capabilities.GiropayPayments; + /** + * The grabpay_payments capability. + */ + grabpay_payments?: Capabilities.GrabpayPayments; + /** * The ideal_payments capability. */ @@ -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.