UNPKG

@buckaroo/buckaroo_sdk

Version:
16 lines (15 loc) 607 B
import { Company, Customer, IAddress, ICompany, IPerson, IPhone, Person } from '../../../Models'; import { RecipientCategory } from '../../../Constants'; export declare class BillinkCustomer extends Customer { set address(address: IAddress); set phone(phone: IPhone); set recipient(recipient: IPerson | ICompany); } export declare class BillinkPerson extends Person { set category(category: RecipientCategory.PERSON); set title(title: string); } export declare class BillinkCompany extends Company { set category(category: RecipientCategory.COMPANY); set title(title: string); }