IssueResponse

data class IssueResponse(val success: Boolean = false, val startResponse: StartStopResponses? = null, val startReady: Boolean = false, val stopResponse: StartStopResponse? = null, val zosmfResponses: List<TsoResponse>? = emptyList(), val commandResponses: String? = null)

The TsoSend API response

Constructors

Link copied to clipboard
fun IssueResponse(success: Boolean = false, startResponse: StartStopResponses? = null, startReady: Boolean = false, stopResponse: StartStopResponse? = null, zosmfResponses: List<TsoResponse>? = emptyList(), commandResponses: String? = null)

Properties

Link copied to clipboard

The command response text.

Link copied to clipboard
val startReady: Boolean = false

Indicates if started TSO contains "READY " message

Link copied to clipboard

zOSMF start TSO API response.

Link copied to clipboard

zOSMF stop TSO API response.

Link copied to clipboard
val success: Boolean = false

True if the command was issued and the responses were collected.

Link copied to clipboard

The list of zOSMF send API responses. May issue multiple requests or to ensure that all messages are collected. Each individual response is placed here.