@mft/moneyhub-api-client
Version:
Node.JS client for the Moneyhub API
21 lines • 633 B
TypeScript
/**
* Standard Financial Statement (Money Advice Service schema).
* GET /standard-financial-statements/{reportId} response data.
*/
export interface StandardFinancialStatement {
id: string;
createdAt: string;
version: string;
currency: string;
/** Schema version key (e.g. "2.1") – structure defined by Money Advice Service */
[]: unknown;
}
/**
* Metadata item from GET /standard-financial-statements list.
*/
export interface StandardFinancialStatementsMetadata {
id: string;
status?: string;
[]: unknown;
}
//# sourceMappingURL=standard-financial-statement.d.ts.map