ofx4js
Version:
A javascript OFX library, ported from OFX4J
33 lines (32 loc) • 843 B
TypeScript
/**
* Identifier for a security.
* @see "Section 13.8.1, OFX Spec"
*/
export declare class SecurityId {
private uniqueId;
private uniqueIdType;
/**
* Gets the unique id for the security. This is a required field according to the OFX spec.
*
* @return the unique id
*/
getUniqueId(): string;
/**
* Sets the unique id for the security. This is a required field according to the OFX spec.
*
* @param uniqueId the unique id
*/
setUniqueId(uniqueId: string): void;
/**
* Gets the type of unique id.
*
* @return the type of unique id
*/
getUniqueIdType(): string;
/**
* Sets the type of unique id.
*
* @param uniqueIdType the type of unique id
*/
setUniqueIdType(uniqueIdType: string): void;
}