UNPKG

@buckaroo/buckaroo_sdk

Version:
15 lines (14 loc) 460 B
import { IPaymentRequest, IPerson, ServiceParameter } from '../../../Models'; export interface IPay extends IPaymentRequest { customer: Partial<IPerson>; sendMail?: boolean; dateDue?: string; customerCountry?: string; } export declare class Pay extends ServiceParameter { set sendMail(sendMail: boolean); set dateDue(dateDue: string); set country(country: string); set customer(person: IPerson); set email(email: string); }