Class GatewayStat
A gateway's own status report.
public sealed record GatewayStat : IEquatable<GatewayStat>
- Inheritance
-
GatewayStat
- Implements
- Inherited Members
Properties
AcknowledgedPercent
What share of its datagrams were acknowledged, as a percentage.
public double AcknowledgedPercent { get; init; }
Property Value
AltitudeM
Its altitude in meters.
public int? AltitudeM { get; init; }
Property Value
- int?
Downlinks
How many downlink datagrams it received.
public uint Downlinks { get; init; }
Property Value
Forwarded
How many it forwarded.
public uint Forwarded { get; init; }
Property Value
LatitudeDeg
Its latitude in degrees, north positive.
public double? LatitudeDeg { get; init; }
Property Value
LongitudeDeg
Its longitude in degrees, east positive.
public double? LongitudeDeg { get; init; }
Property Value
Received
How many packets its radio received.
public uint Received { get; init; }
Property Value
ReceivedOk
How many of those had a good CRC.
public uint ReceivedOk { get; init; }
Property Value
TimeSeconds
The gateway's clock, in seconds since 1970-01-01 UTC.
public ulong? TimeSeconds { get; init; }
Property Value
Transmitted
How many packets it transmitted.
public uint Transmitted { get; init; }