NodeStatus

@Serializable
data class NodeStatus(val state: NodeState? = null, val message: String? = null, val addr: String? = null)

NodeStatus represents the status of a node. It provides the current status of the node, as seen by the manager.

Parameters

state
message
addr

IP address of the node.

Constructors

Link copied to clipboard
constructor(state: NodeState? = null, message: String? = null, addr: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "Addr")
val addr: String?
Link copied to clipboard
@SerialName(value = "Message")
val message: String?
Link copied to clipboard
@SerialName(value = "State")
val state: NodeState?