ofx4js
Version:
A javascript OFX library, ported from OFX4J
36 lines (35 loc) • 997 B
TypeScript
import { ResponseMessage } from "../ResponseMessage";
/**
* Response to a change a user password request.
*
* @see "Section 2.5.2.2, OFX Spec."
*/
export declare class PasswordChangeResponse extends ResponseMessage {
private userId;
private changeTimestamp;
/**
* The id of the user changing password.
*
* @return The id of the user changing password.
*/
getUserId(): string;
getResponseMessageName(): string;
/**
* The id of the user changing password.
*
* @param userId The id of the user changing password.
*/
setUserId(userId: string): void;
/**
* The timestamp of the password change.
*
* @return The timestamp of the password change.
*/
getChangeTimestamp(): Date;
/**
* The timestamp of the password change.
*
* @param changeTimestamp The timestamp of the password change.
*/
setChangeTimestamp(changeTimestamp: Date): void;
}