OnScreenPositionAssignedTargetingOptionDetails
import type { OnScreenPositionAssignedTargetingOptionDetails } from "https://googleapis.deno.dev/v1/displayvideo:v4.ts";
On screen position targeting option details. This will be populated in the
on_screen_position_details field when targeting_type is
TARGETING_TYPE_ON_SCREEN_POSITION
.
interface OnScreenPositionAssignedTargetingOptionDetails {
readonly adType?:
| "AD_TYPE_UNSPECIFIED"
| "AD_TYPE_DISPLAY"
| "AD_TYPE_VIDEO"
| "AD_TYPE_AUDIO";
readonly onScreenPosition?:
| "ON_SCREEN_POSITION_UNSPECIFIED"
| "ON_SCREEN_POSITION_UNKNOWN"
| "ON_SCREEN_POSITION_ABOVE_THE_FOLD"
| "ON_SCREEN_POSITION_BELOW_THE_FOLD";
targetingOptionId?: string;
}§Properties
§
readonly adType?: "AD_TYPE_UNSPECIFIED" | "AD_TYPE_DISPLAY" | "AD_TYPE_VIDEO" | "AD_TYPE_AUDIO"
[src]Output only. The ad type to target. Only applicable to insertion order
targeting and new line items supporting the specified ad type will inherit
this targeting option by default. Possible values are: * AD_TYPE_DISPLAY
,
the setting will be inherited by new line item when line_item_type is
LINE_ITEM_TYPE_DISPLAY_DEFAULT
. * AD_TYPE_VIDEO
, the setting will be
inherited by new line item when line_item_type is
LINE_ITEM_TYPE_VIDEO_DEFAULT
.