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.

92 lines (91 loc) 3.52 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 CustomeClientLink errors. * * @generated from protobuf message google.ads.googleads.v11.errors.CustomerClientLinkErrorEnum */ export interface CustomerClientLinkErrorEnum { } /** * Enum describing possible CustomerClientLink errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError */ export declare enum CustomerClientLinkErrorEnum_CustomerClientLinkError { /** * 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, /** * Trying to manage a client that already in being managed by customer. * * @generated from protobuf enum value: CLIENT_ALREADY_INVITED_BY_THIS_MANAGER = 2; */ CLIENT_ALREADY_INVITED_BY_THIS_MANAGER = 2, /** * Already managed by some other manager in the hierarchy. * * @generated from protobuf enum value: CLIENT_ALREADY_MANAGED_IN_HIERARCHY = 3; */ CLIENT_ALREADY_MANAGED_IN_HIERARCHY = 3, /** * Attempt to create a cycle in the hierarchy. * * @generated from protobuf enum value: CYCLIC_LINK_NOT_ALLOWED = 4; */ CYCLIC_LINK_NOT_ALLOWED = 4, /** * Managed accounts has the maximum number of linked accounts. * * @generated from protobuf enum value: CUSTOMER_HAS_TOO_MANY_ACCOUNTS = 5; */ CUSTOMER_HAS_TOO_MANY_ACCOUNTS = 5, /** * Invitor has the maximum pending invitations. * * @generated from protobuf enum value: CLIENT_HAS_TOO_MANY_INVITATIONS = 6; */ CLIENT_HAS_TOO_MANY_INVITATIONS = 6, /** * Attempt to change hidden status of a link that is not active. * * @generated from protobuf enum value: CANNOT_HIDE_OR_UNHIDE_MANAGER_ACCOUNTS = 7; */ CANNOT_HIDE_OR_UNHIDE_MANAGER_ACCOUNTS = 7, /** * Parent manager account has the maximum number of linked accounts. * * @generated from protobuf enum value: CUSTOMER_HAS_TOO_MANY_ACCOUNTS_AT_MANAGER = 8; */ CUSTOMER_HAS_TOO_MANY_ACCOUNTS_AT_MANAGER = 8, /** * Client has too many managers. * * @generated from protobuf enum value: CLIENT_HAS_TOO_MANY_MANAGERS = 9; */ CLIENT_HAS_TOO_MANY_MANAGERS = 9 } declare class CustomerClientLinkErrorEnum$Type extends MessageType<CustomerClientLinkErrorEnum> { constructor(); create(value?: PartialMessage<CustomerClientLinkErrorEnum>): CustomerClientLinkErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomerClientLinkErrorEnum): CustomerClientLinkErrorEnum; internalBinaryWrite(message: CustomerClientLinkErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.CustomerClientLinkErrorEnum */ export declare const CustomerClientLinkErrorEnum: CustomerClientLinkErrorEnum$Type; export {};