ofx4js
Version:
A javascript OFX library, ported from OFX4J
43 lines (42 loc) • 1.07 kB
TypeScript
export declare class StatementRange {
private start;
private end;
private includeTransactions;
constructor();
/**
* The start of the statement range.
*
* @return The start of the statement range.
*/
getStart(): Date;
/**
* The start of the statement range.
*
* @param start The start of the statement range.
*/
setStart(start: Date): void;
/**
* The end of the statement range.
*
* @return The end of the statement range.
*/
getEnd(): Date;
/**
* The end of the statement range.
*
* @param end The end of the statement range.
*/
setEnd(end: Date): void;
/**
* Whether to include transactions.
*
* @return Whether to include transactions.
*/
getIncludeTransactions(): boolean;
/**
* Whether to include transactions.
*
* @param includeTransactions Whether to include transactions.
*/
setIncludeTransactions(includeTransactions: boolean): void;
}