google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
56 lines (55 loc) • 1.85 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 an app extension.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AppStoreEnum
*/
export interface AppStoreEnum {
}
/**
* App store type in an app extension.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AppStoreEnum.AppStore
*/
export declare enum AppStoreEnum_AppStore {
/**
* 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_ITUNES = 2;
*/
APPLE_ITUNES = 2,
/**
* Google Play.
*
* @generated from protobuf enum value: GOOGLE_PLAY = 3;
*/
GOOGLE_PLAY = 3
}
declare class AppStoreEnum$Type extends MessageType<AppStoreEnum> {
constructor();
create(value?: PartialMessage<AppStoreEnum>): AppStoreEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppStoreEnum): AppStoreEnum;
internalBinaryWrite(message: AppStoreEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AppStoreEnum
*/
export declare const AppStoreEnum: AppStoreEnum$Type;
export {};