LastmileProbeResult
Results of the uplink and downlink last-mile network tests.
struct LastmileProbeResult {
                    LASTMILE_PROBE_RESULT_STATE state;
                    LastmileProbeOneWayResult uplinkReport;
                    LastmileProbeOneWayResult downlinkReport;
                    unsigned int rtt;
                    LastmileProbeResult() : state(LASTMILE_PROBE_RESULT_UNAVAILABLE),
                    rtt(0) {}
                    };
         
            
            
            
            
            
            
            
            Attributes
- state
 - 
                    
The status of the last-mile network tests. See LASTMILE_PROBE_RESULT_STATE.
 - 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).