ofx4js
Version:
A javascript OFX library, ported from OFX4J
25 lines (24 loc) • 816 B
TypeScript
import { VersionSpecificMessageSetInfo } from "../VersionSpecificMessageSetInfo";
import { ImageProfile } from "./common/ImageProfile";
import { MessageSetType } from "../../MessageSetType";
/**
* Credit Card Message Set Profile
* @see "Section 11.13.3 OFX Spec"
*/
export declare class CreditCardV1MessageSetInfo extends VersionSpecificMessageSetInfo {
private closingAvail;
private imageProfile;
getMessageSetType(): MessageSetType;
/**
* Closing statement information available
* @return Boolean
*/
getClosingAvail(): boolean;
setClosingAvail(closingAvail: boolean): void;
/**
* Image profile (if supported)
* @return ImageProfile
*/
getImageProfile(): ImageProfile;
setImageProfile(imageProfile: ImageProfile): void;
}