InfoResponse

data class InfoResponse(    val zosVersion: String = "null",     val zosmfPort: String = "null",     val zosmfVersion: String = "null",     val zosmfHostname: String = "null",     val plugins: List<Plugin> = emptyList(),     val zosmfSafRealm: String = "null",     val zosmfFullVersion: String = "null",     val apiVersion: String = "null")

Constructors

Link copied to clipboard
fun InfoResponse(    zosVersion: String = "null",     zosmfPort: String = "null",     zosmfVersion: String = "null",     zosmfHostname: String = "null",     plugins: List<Plugin> = emptyList(),     zosmfSafRealm: String = "null",     zosmfFullVersion: String = "null",     apiVersion: String = "null")

Properties

Link copied to clipboard
@SerializedName(value = "api_version")
@Expose
val apiVersion: String
Link copied to clipboard
@SerializedName(value = "plugins")
@Expose
val plugins: List<Plugin>
Link copied to clipboard
@SerializedName(value = "zosmf_full_version")
@Expose
val zosmfFullVersion: String
Link copied to clipboard
@SerializedName(value = "zosmf_hostname")
@Expose
val zosmfHostname: String
Link copied to clipboard
@SerializedName(value = "zosmf_port")
@Expose
val zosmfPort: String
Link copied to clipboard
@SerializedName(value = "zosmf_saf_realm")
@Expose
val zosmfSafRealm: String
Link copied to clipboard
@SerializedName(value = "zosmf_version")
@Expose
val zosmfVersion: String
Link copied to clipboard
@SerializedName(value = "zos_version")
@Expose
val zosVersion: String
Link copied to clipboard