TsoResponse

data class TsoResponse(var servletKey: String? = null, var ver: Int? = null, var queueId: String? = null, var remoteSys: String? = null, var tsoData: List<TsoData> = emptyList(), var appData: String? = null, var timeout: Boolean? = null, var reused: Boolean? = null, var msgData: List<MessageData> = emptyList(), var messages: String? = null)

Constructors

Link copied to clipboard
fun TsoResponse(servletKey: String? = null, ver: Int? = null, queueId: String? = null, remoteSys: String? = null, tsoData: List<TsoData> = emptyList(), appData: String? = null, timeout: Boolean? = null, reused: Boolean? = null, msgData: List<MessageData> = emptyList(), messages: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "appData")
@Expose
var appData: String? = null
Link copied to clipboard
@SerializedName(value = "messages")
@Expose
var messages: String? = null
Link copied to clipboard
@SerializedName(value = "msgData")
@Expose
var msgData: List<MessageData>
Link copied to clipboard
@SerializedName(value = "queueID")
@Expose
var queueId: String? = null
Link copied to clipboard
@SerializedName(value = "remoteSys")
@Expose
var remoteSys: String? = null
Link copied to clipboard
@SerializedName(value = "reused")
@Expose
var reused: Boolean? = null
Link copied to clipboard
@SerializedName(value = "servletKey")
@Expose
var servletKey: String? = null
Link copied to clipboard
@SerializedName(value = "timeout")
@Expose
var timeout: Boolean? = null
Link copied to clipboard
@SerializedName(value = "tsoData")
@Expose
var tsoData: List<TsoData>
Link copied to clipboard
@SerializedName(value = "ver")
@Expose
var ver: Int? = null