Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FieldFilter

import type { FieldFilter } from "https://googleapis.deno.dev/v1/dfareporting:v5.ts";

Contains field filter information.

interface FieldFilter {
boolValue?: boolean;
dependentFieldValue?: DependentFieldValue;
fieldId?: number;
matchType?:
| "LHS_MATCH_TYPE_UNKNOWN"
| "EQUALS_OR_UNRESTRICTED"
| "EQUALS"
| "UNRESTRICTED"
| "NOT_EQUALS";
requestValue?: RequestValue;
stringValue?: string;
valueType?:
| "RHS_VALUE_TYPE_UNKNOWN"
| "STRING"
| "REQUEST"
| "BOOL"
| "DEPENDENT";
}

§Properties

§
boolValue?: boolean
[src]

Optional. The boolean values, only applicable when rhs_value_type is BOOL.

§
dependentFieldValue?: DependentFieldValue
[src]

Optional. The dependent values, only applicable when rhs_value_type is DEPENDENT.

§
fieldId?: number
[src]

Optional. The field ID on the left hand side of the expression.

§
matchType?: "LHS_MATCH_TYPE_UNKNOWN" | "EQUALS_OR_UNRESTRICTED" | "EQUALS" | "UNRESTRICTED" | "NOT_EQUALS"
[src]

Optional. Left hand side of the expression match type.

§
requestValue?: RequestValue
[src]

Optional. The request value, only applicable when rhs_value_type is REQUEST.

§
stringValue?: string
[src]

Optional. The string value, only applicable when rhs_value_type is STRING.

§
valueType?: "RHS_VALUE_TYPE_UNKNOWN" | "STRING" | "REQUEST" | "BOOL" | "DEPENDENT"
[src]

Optional. Right hand side of the expression.