ofx4js
Version:
A javascript OFX library, ported from OFX4J
35 lines (34 loc) • 847 B
TypeScript
import { RequestMessage } from "../RequestMessage";
/**
* Request to change a user password.
*
* @see "Section 2.5.2.1, OFX Spec."
*/
export declare class PasswordChangeRequest extends RequestMessage {
private userId;
private newPassword;
/**
* The id of the user changing password.
*
* @return The id of the user changing password.
*/
getUserId(): string;
/**
* The id of the user changing password.
*
* @param userId The id of the user changing password.
*/
setUserId(userId: string): void;
/**
* The new password.
*
* @return The new password.
*/
getNewPassword(): string;
/**
* The new password.
*
* @param newPassword The new password.
*/
setNewPassword(newPassword: string): void;
}