Table of Contents

Class LiveToolsCableTestResult

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

Live Tools Cable Test Result

[DataContract]
public class LiveToolsCableTestResult
Inheritance
LiveToolsCableTestResult
Inherited Members

Properties

CableTestId

Id of the cable test request. Used to check the status of the request.

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

Property Value

string

Error

An error message for a failed execution

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

Property Value

string

Request

Cable test request parameters

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "request")]
public LiveToolsCableTestRequest Request { get; set; }

Property Value

LiveToolsCableTestRequest

Results

Results of the cable test request, one for each requested port.

[DataMember(Name = "results")]
public List<LiveToolsCableTestResultResult> Results { get; set; }

Property Value

List<LiveToolsCableTestResultResult>

Status

Status of the cable test request.

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

Property Value

string

Url

GET this url to check the status of your cable test request.

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

Property Value

string