ofx4js
Version:
A javascript OFX library, ported from OFX4J
13 lines (12 loc) • 346 B
TypeScript
import { SecurityId } from "../../seclist/SecurityId";
/**
* Interface for transactions that have a security associated with them.
*/
export interface TransactionWithSecurity {
/**
* Gets the security for the transaction.
*
* @return the security id for the transaction
*/
getSecurityId(): SecurityId;
}