@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
33 lines • 1.15 kB
TypeScript
export interface IIssueTsoCmdResponse {
/**
* Command response
* @type {{message: string}[]}
* @memberof IIssueTsoCmdResponse
*/
cmdResponse: {
message: string;
}[];
/**
* Whether the TSO PROMPT sign is received in the command response.
* "Y": TSO Prompt is Recieved. "N": TSO Prompt is not recieved yet.
* @type {"Y" | "N"}
* @memberof IIssueTsoCmdResponse
*/
tsoPromptReceived: "Y" | "N";
/**
* Unique identifier for the servlet entry.
* It maps to the TSO/E address space in which the TSO/E command is issued.
* servletKey is returned only when cmdState is stateful for z/OS 2.4 and above
* @type {string}
* @memberof IIssueTsoCmdResponse
*/
servletKey?: string;
/**
* The result of the response detection request. This is returned when the keyword is specified.
* "Y": Matching record in the response was found. "N": Matching record in the response was not found.
* @type {"Y" | "N"}
* @memberof IIssueTsoCmdResponse
*/
keywordDetected?: "Y" | "N";
}
//# sourceMappingURL=IIssueTsoCmdResponse.d.ts.map