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

QueryAssetsResponse

import type { QueryAssetsResponse } from "https://googleapis.deno.dev/v1/cloudasset:v1.ts";

QueryAssets response.

interface QueryAssetsResponse {
done?: boolean;
error?: Status;
jobReference?: string;
outputConfig?: QueryAssetsOutputConfig;
queryResult?: QueryResult;
}

§Properties

§
done?: boolean
[src]

The query response, which can be either an error or a valid response. If done == false and the query result is being saved in a output, the output_config field will be set. If done == true, exactly one of error, query_result or output_config will be set.

§
error?: Status
[src]

Error status.

§
jobReference?: string
[src]

Reference to a query job.

§

Output configuration which indicates instead of being returned in API response on the fly, the query result will be saved in a specific output.

§
queryResult?: QueryResult
[src]

Result of the query.