Class VlanProfileDeviceAssignment
Vlan Profile Device Assignment
[DataContract]
public class VlanProfileDeviceAssignment
- Inheritance
-
VlanProfileDeviceAssignment
- Inherited Members
Properties
Mac
MAC address of the device
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "mac")]
public string? Mac { get; set; }
Property Value
Name
Name of the Device
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "name")]
public string? Name { get; set; }
Property Value
ProductType
The product type
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "productType")]
public string? ProductType { get; set; }
Property Value
Serial
Serial of the Device
[ApiForeignKey(typeof(Device))]
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "serial")]
public string? Serial { get; set; }
Property Value
Stack
The Switch Stack the device belongs to
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "stack")]
public VlanProfileDeviceAssignmentStack? Stack { get; set; }
Property Value
VlanProfile
The VLAN Profile
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "vlanProfile")]
public VlanProfileDeviceAssignmentVlanProfile? VlanProfile { get; set; }