google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
83 lines (82 loc) • 2.88 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 possible statuses of an account link.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AccountLinkStatusEnum
*/
export interface AccountLinkStatusEnum {
}
/**
* Describes the possible statuses for a link between a Google Ads customer
* and another account.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AccountLinkStatusEnum.AccountLinkStatus
*/
export declare enum AccountLinkStatusEnum_AccountLinkStatus {
/**
* 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,
/**
* The link is enabled.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* The link is removed/disabled.
*
* @generated from protobuf enum value: REMOVED = 3;
*/
REMOVED = 3,
/**
* The link to the other account has been requested. A user on the other
* account may now approve the link by setting the status to ENABLED.
*
* @generated from protobuf enum value: REQUESTED = 4;
*/
REQUESTED = 4,
/**
* This link has been requested by a user on the other account. It may be
* approved by a user on this account by setting the status to ENABLED.
*
* @generated from protobuf enum value: PENDING_APPROVAL = 5;
*/
PENDING_APPROVAL = 5,
/**
* The link is rejected by the approver.
*
* @generated from protobuf enum value: REJECTED = 6;
*/
REJECTED = 6,
/**
* The link is revoked by the user who requested the link.
*
* @generated from protobuf enum value: REVOKED = 7;
*/
REVOKED = 7
}
declare class AccountLinkStatusEnum$Type extends MessageType<AccountLinkStatusEnum> {
constructor();
create(value?: PartialMessage<AccountLinkStatusEnum>): AccountLinkStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccountLinkStatusEnum): AccountLinkStatusEnum;
internalBinaryWrite(message: AccountLinkStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AccountLinkStatusEnum
*/
export declare const AccountLinkStatusEnum: AccountLinkStatusEnum$Type;
export {};