@zowe/zosmf-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS Management Facility
28 lines • 689 B
TypeScript
/**
* 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