SendResponse

data class SendResponse(val success: Boolean, val tsoResponses: List<TsoResponse> = emptyList(), val commandResponse: String? = null)

The TsoSend API response

Constructors

Link copied to clipboard
fun SendResponse(success: Boolean, tsoResponses: List<TsoResponse> = emptyList(), commandResponse: String? = null)

Properties

Link copied to clipboard
val commandResponse: String? = null

The command response text.

Link copied to clipboard

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.