google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
62 lines (61 loc) • 2.1 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 asset link.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AssetLinkStatusEnum
*/
export interface AssetLinkStatusEnum {
}
/**
* Enum describing statuses of an asset link.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AssetLinkStatusEnum.AssetLinkStatus
*/
export declare enum AssetLinkStatusEnum_AssetLinkStatus {
/**
* 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,
/**
* Asset link is enabled.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* Asset link has been removed.
*
* @generated from protobuf enum value: REMOVED = 3;
*/
REMOVED = 3,
/**
* Asset link is paused.
*
* @generated from protobuf enum value: PAUSED = 4;
*/
PAUSED = 4
}
declare class AssetLinkStatusEnum$Type extends MessageType<AssetLinkStatusEnum> {
constructor();
create(value?: PartialMessage<AssetLinkStatusEnum>): AssetLinkStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetLinkStatusEnum): AssetLinkStatusEnum;
internalBinaryWrite(message: AssetLinkStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AssetLinkStatusEnum
*/
export declare const AssetLinkStatusEnum: AssetLinkStatusEnum$Type;
export {};