LastmileProbeResult

Last mile network quality probe result for both uplink and downlink.

export class LastmileProbeResult {
  
  state?: LastmileProbeResultState;
  
  uplinkReport?: LastmileProbeOneWayResult;
  
  downlinkReport?: LastmileProbeOneWayResult;
  
  rtt?: number;
}

Properties

state
Status of the last mile probe result. See LastmileProbeResultState.
uplinkReport
Uplink network quality report. See LastmileProbeOneWayResult.
downlinkReport
Downlink network quality report. See LastmileProbeOneWayResult.
rtt
Round-trip time (ms).