Show / Hide Table of Contents

Enum ReportDefinition.Types.Filter.Types.Operation

Supported filter operations.

Namespace: Google.Ads.AdManager.V1
Assembly: Google.Ads.AdManager.V1.dll
Syntax
public enum ReportDefinition.Types.Filter.Types.Operation

Fields

Name Description
Between

Operand is between provided filter values.

Contains

For scalar string operands, checks if the operand contains any of the provided filter substrings.

For string list operands, checks if any string in the operand contains any of the provided filter substrings.

GreaterThan

Operand is greater than provided filter value.

GreaterThanEquals

Operand is greater than or equal to provided filter value.

In

For scalar operands, checks if the operand is in the set of provided filter values.

For list operands, checks if any element in the operand is in the set of provided filter values.

Default value.

LessThan

Operand is less than the provided filter value.

LessThanEquals

Operand is less than or equal to provided filter value.

Matches

Operand matches against a regular expression or set of regular expressions (one must match).

NotContains

For scalar string operands, checks that the operand contains none of the provided filter substrings.

For string list operands, checks that none of the strings in the operand contain none of the provided filter substrings.

NotIn

For scalar operands, checks that the operand is not in the set of provided filter values.

For list operands, checks that none of the elements in the operand is in the set of provided filter values.

NotMatches

Operand negative matches against a regular expression or set of regular expressions (none must match).

In this article
Back to top Generated by DocFX