import type { PaymentMethodReferenceSetupRequestGatewayProperties } from './PaymentMethodReferenceSetupRequestGatewayProperties'; /** * @type PaymentMethodReferenceSetupRequest: Request to set up a new payment method reference. * * @property paymentMethodType: Payment Method Type * - **Max Length:** 256 * * @property gatewayProperties: * */ export type PaymentMethodReferenceSetupRequest = { paymentMethodType?: string; gatewayProperties: PaymentMethodReferenceSetupRequestGatewayProperties; } & { [key: string]: any; };