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

AddTargetedAppsRequest

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

A request to start targeting the provided app IDs in a specific pretargeting configuration. The pretargeting configuration itself specifies how these apps are targeted. in PretargetingConfig.appTargeting.mobileAppTargeting.

interface AddTargetedAppsRequest {
appIds?: string[];
targetingMode?: "TARGETING_MODE_UNSPECIFIED" | "INCLUSIVE" | "EXCLUSIVE";
}

§Properties

§
appIds?: string[]
[src]

A list of app IDs to target in the pretargeting configuration. These values will be added to the list of targeted app IDs in PretargetingConfig.appTargeting.mobileAppTargeting.values.

§
targetingMode?: "TARGETING_MODE_UNSPECIFIED" | "INCLUSIVE" | "EXCLUSIVE"
[src]

Required. The targeting mode that should be applied to the list of app IDs. If there are existing targeted app IDs, must be equal to the existing PretargetingConfig.appTargeting.mobileAppTargeting.targetingMode or a 400 bad request error will be returned.