Class NetworkApplianceRfProfileCreateUpdate
NetworkApplianceRfProfiles
[DataContract]
public class NetworkApplianceRfProfileCreateUpdate
- Inheritance
-
NetworkApplianceRfProfileCreateUpdate
- Inherited Members
Properties
FiveGhzSettings
Settings related to 5Ghz band.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "fiveGhzSettings")]
public NetworkApplianceRfProfileFiveGhzSettings? FiveGhzSettings { get; set; }
Property Value
Name
The name of the new profile. Must be unique. This param is required on creation.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "name")]
public string? Name { get; set; }
Property Value
NetworkId
ID of network this RF Profile belongs in.
[ApiForeignKey(typeof(Network))]
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "networkId")]
public string? NetworkId { get; set; }
Property Value
PerSsidSettings
Per-SSID radio settings by number.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "perSsidSettings")]
public NetworkApplianceRfProfilePerSsidSettings? PerSsidSettings { get; set; }
Property Value
TwoFourGhzSettings
Settings related to 2.4Ghz band.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "twoFourGhzSettings")]
public NetworkApplianceRfProfileTwoFourGhzSettings? TwoFourGhzSettings { get; set; }