Class PerClientBandwidthLimits
An object describing the bandwidth settings for your rule.
[DataContract]
public class PerClientBandwidthLimits
- Inheritance
-
PerClientBandwidthLimits
- Inherited Members
Constructors
PerClientBandwidthLimits()
public PerClientBandwidthLimits()
Properties
BandwidthLimits
The bandwidth limits object, specifying the upload ('limitUp') and download ('limitDown') speed in Kbps. These are only enforced if 'settings' is set to 'custom'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "bandwidthLimits")]
public BandwidthLimit? BandwidthLimits { get; set; }
Property Value
Settings
How bandwidth limits are applied by your rule. Can be one of 'network default', 'ignore' or 'custom'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "settings")]
public string? Settings { get; set; }