LastmileProbeResult

Last mile uplink and downlink network quality probe result.

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

Properties

state
The state 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).