ofx4js
Version:
A javascript OFX library, ported from OFX4J
35 lines (34 loc) • 1.06 kB
TypeScript
import { RequestMessage } from "../RequestMessage";
import { ClientRoutingCapability } from "./ClientRoutingCapability";
/**
* @see "Section 7.1.5, OFX Spec"
*/
export declare class ProfileRequest extends RequestMessage {
private routingCapability;
private profileLastUpdated;
constructor();
/**
* The client routing capability.
*
* @return The client routing capability.
*/
getRoutingCapability(): ClientRoutingCapability;
/**
* The client routing capability.
*
* @param routingCapability The client routing capability.
*/
setRoutingCapability(routingCapability: ClientRoutingCapability): void;
/**
* The date the profile was last updated.
*
* @return The date the profile was last updated.
*/
getProfileLastUpdated(): Date;
/**
* The date the profile was last updated.
*
* @param profileLastUpdated The date the profile was last updated.
*/
setProfileLastUpdated(profileLastUpdated: Date): void;
}