Show / Hide Table of Contents

Class CollaborativeCapabilityWeightOverride

Collaborative capability key and overriding weight.

Inheritance
object
CollaborativeCapabilityWeightOverride
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WafService.Models
Assembly: OCI.DotNetSDK.Waf.dll
Syntax
public class CollaborativeCapabilityWeightOverride

Properties

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Unique key of collaborative capability for which weight will be overridden.

Remarks

Required

Weight

Declaration
[Required(ErrorMessage = "Weight is required.")]
[JsonProperty(PropertyName = "weight")]
public int? Weight { get; set; }
Property Value
Type Description
int?

The value of weight to set.

Remarks

Required

In this article
Back to top