LastmileProbeResult

Results of the uplink and downlink last-mile network tests.

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

Attributes

state

The status of the last-mile network tests. See LastmileProbeResultState.

uplinkReport
Results of the uplink last-mile network test. See LastmileProbeOneWayResult.
downlinkReport
Results of the downlink last-mile network test. See LastmileProbeOneWayResult.
rtt
The round-trip time (ms).