UNPKG

@buckaroo/buckaroo_sdk

Version:
11 lines (10 loc) 386 B
import { IPaymentRequest, IPerson, ServiceParameter } from '../../../Models'; export interface IPay extends IPaymentRequest { customer: Partial<IPerson> & { country?: 'DE' | 'DK' | 'EE' | 'ES' | 'FI' | 'NL' | 'NO' | 'PL' | 'SE' | 'GB'; }; } export declare class Pay extends ServiceParameter { set customer(value: Partial<IPerson>); set country(value: string); }