/** * @type PaymentMethodReferenceSetupRequestGatewayProperties: Properties specific to the payment gateway * * @property stripe: # Stripe-specific properties. * * @property adyen: # Adyen-specific properties. * */ export type PaymentMethodReferenceSetupRequestGatewayProperties = { stripe?: { [key: string]: any; }; adyen?: { [key: string]: any; }; } & { [key: string]: any; };