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.16 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 types of campaign shared set statuses.
*
* @generated from protobuf message google.ads.googleads.v11.enums.CampaignSharedSetStatusEnum
*/
export interface CampaignSharedSetStatusEnum {
}
/**
* Enum listing the possible campaign shared set statuses.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus
*/
export declare enum CampaignSharedSetStatusEnum_CampaignSharedSetStatus {
/**
* 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 campaign shared set is enabled.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* The campaign shared set is removed and can no longer be used.
*
* @generated from protobuf enum value: REMOVED = 3;
*/
REMOVED = 3
}
declare class CampaignSharedSetStatusEnum$Type extends MessageType<CampaignSharedSetStatusEnum> {
constructor();
create(value?: PartialMessage<CampaignSharedSetStatusEnum>): CampaignSharedSetStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CampaignSharedSetStatusEnum): CampaignSharedSetStatusEnum;
internalBinaryWrite(message: CampaignSharedSetStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.CampaignSharedSetStatusEnum
*/
export declare const CampaignSharedSetStatusEnum: CampaignSharedSetStatusEnum$Type;
export {};