dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 823 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { MobileApplicationStore } from './mobileApplicationStore';
import { MobileApplicationPlatform } from './mobileApplicationPlatform';
export declare class MobileApplication extends XMLElement {
protected static XSI_TYPE: string;
id: number;
displayName: string;
appStoreId: string;
appStore: MobileApplicationStore;
isArchived: boolean;
appStoreName: string;
developerName: string;
platform: MobileApplicationPlatform;
isFree: boolean;
downloadUrl: string;
constructor(id?: number, displayName?: string, appStoreId?: string, appStore?: MobileApplicationStore, isArchived?: boolean, appStoreName?: string, developerName?: string, platform?: MobileApplicationPlatform, isFree?: boolean, downloadUrl?: string);
}