Saved Host Impl

@Serializable
data class SavedHostImpl(val id: String, val name: String, val hostAddress: String, var status: HostStatus) : SavedHost

The SavedHostImpl class is the implementation of the SavedHost interface

Author

N7ghtm4r3 - Tecknobit

See also

Constructors

Link copied to clipboard
constructor(id: String, name: String, hostAddress: String, status: HostStatus)

Properties

Link copied to clipboard
@SerialName(value = "host_address" )
open override val hostAddress: String

The address of the host

Link copied to clipboard
open override val id: String

The identifier of the host

Link copied to clipboard
open override val name: String

The name of the host

Link copied to clipboard
open override var status: HostStatus

The current status of the host