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
§
dependentFieldValue?: DependentFieldValue
[src]Optional. The dependent values, only applicable when rhs_value_type is DEPENDENT.
§
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.