Table of Contents

Class PacketLossStats

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

Represents packet loss statistics for a direction (upstream or downstream).

[DataContract]
public class PacketLossStats
Inheritance
PacketLossStats
Inherited Members

Constructors

PacketLossStats()

public PacketLossStats()

Properties

LossPercentage

Percentage of lost packets.

[DataMember(Name = "lossPercentage")]
public double LossPercentage { get; set; }

Property Value

double

Lost

Number of lost packets.

[DataMember(Name = "lost")]
public int Lost { get; set; }

Property Value

int

Total

Total number of packets.

[DataMember(Name = "total")]
public int Total { get; set; }

Property Value

int