Public delivery identity for a provider and runtime platform.

interface GameAdProviderApp {
    app_key: string;
    bundle_id?: null | string;
    id?: string;
    integration_type: "managed" | "direct";
    metadata?: null | Record<string, any>;
    mode: "integration" | "production";
    platform: "web" | "electron_macos" | "electron_windows" | "electron_linux" | "unity_webgl" | "cocos_web" | "construct_web";
    provider: "anzu";
    status: "pending" | "active" | "disabled";
    title_id?: null | string;
}

Properties

app_key: string
bundle_id?: null | string
id?: string
integration_type: "managed" | "direct"
metadata?: null | Record<string, any>
mode: "integration" | "production"
platform: "web" | "electron_macos" | "electron_windows" | "electron_linux" | "unity_webgl" | "cocos_web" | "construct_web"
provider: "anzu"
status: "pending" | "active" | "disabled"
title_id?: null | string

Generated using TypeDoc