AppAssignedTargetingOptionDetails
import type { AppAssignedTargetingOptionDetails } from "https://googleapis.deno.dev/v1/displayvideo:v4.ts";
Details for assigned app targeting option. This will be populated in the
details field of an AssignedTargetingOption when targeting_type is
TARGETING_TYPE_APP
.
interface AppAssignedTargetingOptionDetails {
appId?: string;
appPlatform?:
| "APP_PLATFORM_UNSPECIFIED"
| "APP_PLATFORM_IOS"
| "APP_PLATFORM_ANDROID"
| "APP_PLATFORM_ROKU"
| "APP_PLATFORM_AMAZON_FIRETV"
| "APP_PLATFORM_PLAYSTATION"
| "APP_PLATFORM_APPLE_TV"
| "APP_PLATFORM_XBOX"
| "APP_PLATFORM_SAMSUNG_TV"
| "APP_PLATFORM_ANDROID_TV"
| "APP_PLATFORM_GENERIC_CTV"
| "APP_PLATFORM_LG_TV"
| "APP_PLATFORM_VIZIO_TV";
readonly displayName?: string;
negative?: boolean;
}§Properties
§
appId?: string
[src]Required. The ID of the app. Android's Play store app uses bundle ID, for
example com.google.android.gm
. Apple's App store app ID uses 9 digit
string, for example 422689480
.
§
appPlatform?: "APP_PLATFORM_UNSPECIFIED" | "APP_PLATFORM_IOS" | "APP_PLATFORM_ANDROID" | "APP_PLATFORM_ROKU" | "APP_PLATFORM_AMAZON_FIRETV" | "APP_PLATFORM_PLAYSTATION" | "APP_PLATFORM_APPLE_TV" | "APP_PLATFORM_XBOX" | "APP_PLATFORM_SAMSUNG_TV" | "APP_PLATFORM_ANDROID_TV" | "APP_PLATFORM_GENERIC_CTV" | "APP_PLATFORM_LG_TV" | "APP_PLATFORM_VIZIO_TV"
[src]Indicates the platform of the targeted app. If this field is not specified, the app platform will be assumed to be mobile (i.e., Android or iOS), and we will derive the appropriate mobile platform from the app ID.