NetworkContainer

@Serializable
data class NetworkContainer(val name: String? = null, val endpointID: String? = null, val macAddress: String? = null, val ipv4Address: String? = null, val ipv6Address: String? = null)

Parameters

name
endpointID
macAddress
ipv4Address
ipv6Address

Constructors

Link copied to clipboard
constructor(name: String? = null, endpointID: String? = null, macAddress: String? = null, ipv4Address: String? = null, ipv6Address: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "EndpointID")
val endpointID: String?
Link copied to clipboard
@SerialName(value = "IPv4Address")
val ipv4Address: String?
Link copied to clipboard
@SerialName(value = "IPv6Address")
val ipv6Address: String?
Link copied to clipboard
@SerialName(value = "MacAddress")
val macAddress: String?
Link copied to clipboard
@SerialName(value = "Name")
val name: String?