ofx4js
Version:
A javascript OFX library, ported from OFX4J
25 lines (24 loc) • 792 B
TypeScript
import { RequestMessageSet } from "../RequestMessageSet";
import { ProfileRequestTransaction } from "./ProfileRequestTransaction";
import { MessageSetType } from "../MessageSetType";
import { RequestMessage } from "../RequestMessage";
/**
* @see "Section 7 OFX Spec"
*/
export declare class ProfileRequestMessageSet extends RequestMessageSet {
private profileRequest;
getType(): MessageSetType;
/**
* The profile request.
*
* @return The profile request.
*/
getProfileRequest(): ProfileRequestTransaction;
/**
* The profile request.
*
* @param profileRequest The profile request.
*/
setProfileRequest(profileRequest: ProfileRequestTransaction): void;
getRequestMessages(): Array<RequestMessage>;
}