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) • 2.04 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";
/**
* The application store that distributes mobile applications.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AppCampaignAppStoreEnum
*/
export interface AppCampaignAppStoreEnum {
}
/**
* Enum describing app campaign app store.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AppCampaignAppStoreEnum.AppCampaignAppStore
*/
export declare enum AppCampaignAppStoreEnum_AppCampaignAppStore {
/**
* 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 app store.
*
* @generated from protobuf enum value: APPLE_APP_STORE = 2;
*/
APPLE_APP_STORE = 2,
/**
* Google play.
*
* @generated from protobuf enum value: GOOGLE_APP_STORE = 3;
*/
GOOGLE_APP_STORE = 3
}
declare class AppCampaignAppStoreEnum$Type extends MessageType<AppCampaignAppStoreEnum> {
constructor();
create(value?: PartialMessage<AppCampaignAppStoreEnum>): AppCampaignAppStoreEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AppCampaignAppStoreEnum): AppCampaignAppStoreEnum;
internalBinaryWrite(message: AppCampaignAppStoreEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AppCampaignAppStoreEnum
*/
export declare const AppCampaignAppStoreEnum: AppCampaignAppStoreEnum$Type;
export {};