Class Destination
Destination
[DataContract]
public class Destination
- Inheritance
-
Destination
- Inherited Members
Properties
Default
Boolean indicating whether this is the default testing destination (true) or not (false). Defaults to false. Only one default is allowed
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "default")]
public bool? Default { get; set; }
Property Value
- bool?
Description
Description of the testing destination. Optional, defaults to null
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "description")]
public string Description { get; set; }
Property Value
Ip
The IP address to test connectivity with
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "ip")]
public string Ip { get; set; }