Table of Contents

Class LiveToolsCableTestResultResult

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

Live Tools Cable Test ResultResult

[DataContract]
public class LiveToolsCableTestResultResult
Inheritance
LiveToolsCableTestResultResult
Inherited Members

Properties

Error

If an error occurred during the cable test, the error message will be populated here.

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "error")]
public string Error { get; set; }

Property Value

string

Pairs

Results for each twisted pair within the cable.

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "pairs")]
public List<LiveToolsCableTestResultResultPair> Pairs { get; set; }

Property Value

List<LiveToolsCableTestResultResultPair>

Port

The port for which the test was performed.

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "port")]
public string Port { get; set; }

Property Value

string

SpeedMbps

Speed in Mbps. A speed of 0 indicates the port is down or the port speed is automatic.

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "speedMbps")]
public int SpeedMbps { get; set; }

Property Value

int

Status

The current status of the port. If the cable test is still being performed on the port, "in-progress" is used. If an error occurred during the cable test, "error" is used and the error property will be populated.

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public string Status { get; set; }

Property Value

string