Class WirelessDevicePacketLoss
Represents packet loss statistics for a wireless device in an organization.
[DataContract]
public class WirelessDevicePacketLoss
- Inheritance
-
WirelessDevicePacketLoss
- Inherited Members
Constructors
WirelessDevicePacketLoss()
public WirelessDevicePacketLoss()
Properties
Device
Device information.
[DataMember(Name = "device")]
public DeviceInfo? Device { get; set; }
Property Value
Downstream
Downstream packet loss statistics.
[DataMember(Name = "downstream")]
public PacketLossStats? Downstream { get; set; }
Property Value
Network
Network information for the device.
[DataMember(Name = "network")]
public NetworkInfo? Network { get; set; }
Property Value
Upstream
Upstream packet loss statistics.
[DataMember(Name = "upstream")]
public PacketLossStats? Upstream { get; set; }