Show / Hide Table of Contents

Class SimpleCondition

Information for a simple condition.

Inheritance
object
Condition
SimpleCondition
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class SimpleCondition : Condition

Properties

Operator

Declaration
[JsonProperty(PropertyName = "operator")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OperatorType? Operator { get; set; }
Property Value
Type Description
OperatorType?

Type of operator

Parameter

Declaration
[JsonProperty(PropertyName = "parameter")]
public string Parameter { get; set; }
Property Value
Type Description
string

Parameter key

Value

Declaration
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type Description
string

Value of operator in condition

ValueType

Declaration
[JsonProperty(PropertyName = "valueType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConditionValueType? ValueType { get; set; }
Property Value
Type Description
ConditionValueType?

Type of value in condition

In this article
Back to top