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

DynamicFeed

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

Contains dynamic feed information.

interface DynamicFeed {
contentSource?: ContentSource;
readonly createInfo?: LastModifiedInfo;
readonly dynamicFeedId?: bigint;
dynamicFeedName?: string;
element?: Element;
readonly feedIngestionStatus?: FeedIngestionStatus;
feedSchedule?: FeedSchedule;
readonly hasPublished?: boolean;
readonly lastModifiedInfo?: LastModifiedInfo;
readonly status?:
| "STATUS_UNKNOWN"
| "ACTIVE"
| "INACTIVE"
| "DELETED";
studioAdvertiserId?: bigint;
}

§Properties

§
contentSource?: ContentSource
[src]

Required. The content source of the dynamic feed. This is a required field.

§
readonly createInfo?: LastModifiedInfo
[src]

Output only. The creation timestamp of the dynamic feed. This is a read-only field.

§
readonly dynamicFeedId?: bigint
[src]

Output only. Unique ID of this dynamic feed. This is a read-only, auto-generated field.

§
dynamicFeedName?: string
[src]

Optional. Name of this dynamic feed. It is defaulted to content source file name if not provided.

§
element?: Element
[src]

Required. The element of the dynamic feed that is to specify the schema of the feed. This is a required field.

§
readonly feedIngestionStatus?: FeedIngestionStatus
[src]

Output only. The ingestion status of the dynamic feed. This is a read-only field.

§
feedSchedule?: FeedSchedule
[src]

Optional. The schedule of the dynamic feed. It can be set if the feed is published.

§
readonly hasPublished?: boolean
[src]

Output only. Indicates whether the dynamic feed has a published version. This is a read-only field.

§
readonly lastModifiedInfo?: LastModifiedInfo
[src]

Output only. The last modified timestamp of the dynamic feed. This is a read-only field.

§
readonly status?: "STATUS_UNKNOWN" | "ACTIVE" | "INACTIVE" | "DELETED"
[src]

Output only. The status of the feed. It is a read-only field that depends on the the feed ingestion status. The default value is INACTIVE, and it will be updated to ACTIVE once the feed is ingested successfully.

§
studioAdvertiserId?: bigint
[src]

Required. Advertiser ID of this dynamic feed. This is a required field.