camtts
Version:
CAMT parser for Typescript
24 lines (23 loc) • 802 B
TypeScript
import { Entry } from "./Entry";
import { CAMTElement } from "./Base";
export declare class Report extends CAMTElement {
get id(): string | null | undefined;
get electronicSequenceNumber(): string | null | undefined;
get creationDateTime(): string | null | undefined;
get account(): Account;
get entries(): Array<Entry>;
}
export declare class Account extends CAMTElement {
get id(): {
iban: string | null | undefined;
};
get currency(): string | null | undefined;
get servicer(): Servicer;
}
export declare class Servicer extends CAMTElement {
get financialInstitutionId(): FinancialInstitutionId;
}
export declare class FinancialInstitutionId extends CAMTElement {
get bic(): string | null | undefined;
get name(): string | null | undefined;
}