UNPKG

google-ads-api-client

Version:

A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.

50 lines (49 loc) 2.04 kB
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 possible campaign shared set errors. * * @generated from protobuf message google.ads.googleads.v11.errors.CampaignSharedSetErrorEnum */ export interface CampaignSharedSetErrorEnum { } /** * Enum describing possible campaign shared set errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError */ export declare enum CampaignSharedSetErrorEnum_CampaignSharedSetError { /** * Enum unspecified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The received error code is not known in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * The shared set belongs to another customer and permission isn't granted. * * @generated from protobuf enum value: SHARED_SET_ACCESS_DENIED = 2; */ SHARED_SET_ACCESS_DENIED = 2 } declare class CampaignSharedSetErrorEnum$Type extends MessageType<CampaignSharedSetErrorEnum> { constructor(); create(value?: PartialMessage<CampaignSharedSetErrorEnum>): CampaignSharedSetErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CampaignSharedSetErrorEnum): CampaignSharedSetErrorEnum; internalBinaryWrite(message: CampaignSharedSetErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.CampaignSharedSetErrorEnum */ export declare const CampaignSharedSetErrorEnum: CampaignSharedSetErrorEnum$Type; export {};