google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
74 lines (73 loc) • 2.59 kB
TypeScript
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
/**
* Container for enum describing app store type in a legacy app install ad.
*
* @generated from protobuf message google.ads.googleads.v11.enums.LegacyAppInstallAdAppStoreEnum
*/
export interface LegacyAppInstallAdAppStoreEnum {
}
/**
* App store type in a legacy app install ad.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
*/
export declare enum LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* Used for return value only. Represents value unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Apple iTunes.
*
* @generated from protobuf enum value: APPLE_APP_STORE = 2;
*/
APPLE_APP_STORE = 2,
/**
* Google Play.
*
* @generated from protobuf enum value: GOOGLE_PLAY = 3;
*/
GOOGLE_PLAY = 3,
/**
* Windows Store.
*
* @generated from protobuf enum value: WINDOWS_STORE = 4;
*/
WINDOWS_STORE = 4,
/**
* Windows Phone Store.
*
* @generated from protobuf enum value: WINDOWS_PHONE_STORE = 5;
*/
WINDOWS_PHONE_STORE = 5,
/**
* The app is hosted in a Chinese app store.
*
* @generated from protobuf enum value: CN_APP_STORE = 6;
*/
CN_APP_STORE = 6
}
declare class LegacyAppInstallAdAppStoreEnum$Type extends MessageType<LegacyAppInstallAdAppStoreEnum> {
constructor();
create(value?: PartialMessage<LegacyAppInstallAdAppStoreEnum>): LegacyAppInstallAdAppStoreEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LegacyAppInstallAdAppStoreEnum): LegacyAppInstallAdAppStoreEnum;
internalBinaryWrite(message: LegacyAppInstallAdAppStoreEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.LegacyAppInstallAdAppStoreEnum
*/
export declare const LegacyAppInstallAdAppStoreEnum: LegacyAppInstallAdAppStoreEnum$Type;
export {};