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

VideoAdSequenceStep

import type { VideoAdSequenceStep } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

The detail of a single step in a VideoAdSequence.

interface VideoAdSequenceStep {
adGroupId?: bigint;
interactionType?:
| "INTERACTION_TYPE_UNSPECIFIED"
| "INTERACTION_TYPE_PAID_VIEW"
| "INTERACTION_TYPE_SKIP"
| "INTERACTION_TYPE_IMPRESSION"
| "INTERACTION_TYPE_ENGAGED_IMPRESSION";
previousStepId?: bigint;
stepId?: bigint;
}

§Properties

§
adGroupId?: bigint
[src]

The ID of the corresponding ad group of the step.

§
interactionType?: "INTERACTION_TYPE_UNSPECIFIED" | "INTERACTION_TYPE_PAID_VIEW" | "INTERACTION_TYPE_SKIP" | "INTERACTION_TYPE_IMPRESSION" | "INTERACTION_TYPE_ENGAGED_IMPRESSION"
[src]

The interaction on the previous step that will lead the viewer to this step. The first step does not have interaction_type.

§
previousStepId?: bigint
[src]

The ID of the previous step. The first step does not have previous step.

§
stepId?: bigint
[src]

The ID of the step.