export type payment_PaymentMethodPreference = { /** * FeesPaidByClient reports whether the transaction fee for this method is charged to the client. */ feePaidByClient?: boolean; /** * Type is the payment method type this preference applies to. */ type?: payment_PaymentMethodPreference.type; }; export declare namespace payment_PaymentMethodPreference { /** * Type is the payment method type this preference applies to. */ enum type { BANK_ACCOUNT = "bankAccount", CREDIT_CARD = "creditCard" } }