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; }