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

PublisherProfileMobileApplication

import type { PublisherProfileMobileApplication } from "https://googleapis.deno.dev/v1/adexchangebuyer2:v2beta1.ts";

A mobile application that contains a external app ID, name, and app store.

interface PublisherProfileMobileApplication {
appStore?:
| "APP_STORE_TYPE_UNSPECIFIED"
| "APPLE_ITUNES"
| "GOOGLE_PLAY"
| "ROKU"
| "AMAZON_FIRETV"
| "PLAYSTATION"
| "XBOX"
| "SAMSUNG_TV"
| "AMAZON"
| "OPPO"
| "SAMSUNG"
| "VIVO"
| "XIAOMI"
| "LG_TV";
externalAppId?: string;
name?: string;
}

§Properties

§
appStore?: "APP_STORE_TYPE_UNSPECIFIED" | "APPLE_ITUNES" | "GOOGLE_PLAY" | "ROKU" | "AMAZON_FIRETV" | "PLAYSTATION" | "XBOX" | "SAMSUNG_TV" | "AMAZON" | "OPPO" | "SAMSUNG" | "VIVO" | "XIAOMI" | "LG_TV"
[src]

The app store the app belongs to.

§
externalAppId?: string
[src]

The external ID for the app from its app store.

§
name?: string
[src]

The name of the app.