@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
19 lines • 469 B
TypeScript
export interface Beneficiary {
id: string;
active: boolean;
name?: string;
reference?: string;
accountNumber?: string;
sortCode?: string;
iban?: string;
pan?: string;
providerAccountId: string;
providerBeneficiaryId: string;
accountId: string;
createdAt: string;
modifiedAt: string;
}
export interface BeneficiaryWithDetails extends Beneficiary {
postalAddress: object;
}
//# sourceMappingURL=beneficiary.d.ts.map