/**
 * z/OSMF change password/passphrase response.
 * @export
 * @interface IZosmfChangePasswordResponse
 */
export interface IZosmfChangePasswordResponse {
    /**
     * Whether the password change completed successfully.
     * @type {boolean}
     */
    success: boolean;
    /**
     * Identifies the category of errors (0 = success).
     * @type {number}
     */
    returnCode: number;
    /**
     * Identifies the specific error (0 = success).
     * @type {number}
     */
    reasonCode: number;
    /**
     * Describes the text information of the change request.
     * @type {string}
     */
    message: string;
}
//# sourceMappingURL=IZosmfChangePasswordResponse.d.ts.map