Class AlgorithmRulesRuleCondition
Set of signal comparisons. Equivalent of an if
statement.
Implements
Inherited Members
Namespace: Google.Apis.DisplayVideo.v3.Data
Assembly: Google.Apis.DisplayVideo.v3.dll
Syntax
public class AlgorithmRulesRuleCondition : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ReturnValue
The value returned if the signalComparisons
condition evaluates to TRUE
.
Declaration
[JsonProperty("returnValue")]
public virtual AlgorithmRulesSignalValue ReturnValue { get; set; }
Property Value
Type | Description |
---|---|
AlgorithmRulesSignalValue |
SignalComparisons
List of comparisons that build if
statement condition. The comparisons are combined into a single
condition with AND
logical operators.
Declaration
[JsonProperty("signalComparisons")]
public virtual IList<AlgorithmRulesSignalComparison> SignalComparisons { get; set; }
Property Value
Type | Description |
---|---|
IList<AlgorithmRulesSignalComparison> |