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

ObjectFilter

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

Object Filter.

interface ObjectFilter {
kind?: string;
objectIds?: bigint[];
status?: "NONE" | "ASSIGNED" | "ALL";
}

§Properties

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "dfareporting#objectFilter".

§
objectIds?: bigint[]
[src]

Applicable when status is ASSIGNED. The user has access to objects with these object IDs.

§
status?: "NONE" | "ASSIGNED" | "ALL"
[src]

Status of the filter. NONE means the user has access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the user has access to the objects with IDs in the objectIds list.