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

TemporalAsset

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

An asset in Google Cloud and its temporal metadata, including the time window when it was observed and its status during that window.

interface TemporalAsset {
asset?: Asset;
deleted?: boolean;
priorAsset?: Asset;
priorAssetState?:
| "PRIOR_ASSET_STATE_UNSPECIFIED"
| "PRESENT"
| "INVALID"
| "DOES_NOT_EXIST"
| "DELETED";
window?: TimeWindow;
}

§Properties

§
asset?: Asset
[src]

An asset in Google Cloud.

§
deleted?: boolean
[src]

Whether the asset has been deleted or not.

§
priorAsset?: Asset
[src]

Prior copy of the asset. Populated if prior_asset_state is PRESENT. Currently this is only set for responses in Real-Time Feed.

§
priorAssetState?: "PRIOR_ASSET_STATE_UNSPECIFIED" | "PRESENT" | "INVALID" | "DOES_NOT_EXIST" | "DELETED"
[src]

State of prior_asset.

§

The time window when the asset data and state was observed.