UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

34 lines (33 loc) 773 B
import { AccountDetails } from "../common/AccountDetails"; /** * * @see "OFX Spec, Section 11.3.2" */ export declare class CreditCardAccountDetails implements AccountDetails { private accountNumber; private accountKey; /** * The account number. * * @return The account number. */ getAccountNumber(): string; /** * The account number. * * @param accountNumber The account number. */ setAccountNumber(accountNumber: string): void; /** * The account key. * * @return The account key. */ getAccountKey(): string; /** * The account key. * * @param accountKey The account key. */ setAccountKey(accountKey: string): void; }