google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
68 lines (67 loc) • 2.44 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 AdGroupCriterion approval statuses.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AdGroupCriterionApprovalStatusEnum
*/
export interface AdGroupCriterionApprovalStatusEnum {
}
/**
* Enumerates AdGroupCriterion approval statuses.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus
*/
export declare enum AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The value is unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Approved.
*
* @generated from protobuf enum value: APPROVED = 2;
*/
APPROVED = 2,
/**
* Disapproved.
*
* @generated from protobuf enum value: DISAPPROVED = 3;
*/
DISAPPROVED = 3,
/**
* Pending Review.
*
* @generated from protobuf enum value: PENDING_REVIEW = 4;
*/
PENDING_REVIEW = 4,
/**
* Under review.
*
* @generated from protobuf enum value: UNDER_REVIEW = 5;
*/
UNDER_REVIEW = 5
}
declare class AdGroupCriterionApprovalStatusEnum$Type extends MessageType<AdGroupCriterionApprovalStatusEnum> {
constructor();
create(value?: PartialMessage<AdGroupCriterionApprovalStatusEnum>): AdGroupCriterionApprovalStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupCriterionApprovalStatusEnum): AdGroupCriterionApprovalStatusEnum;
internalBinaryWrite(message: AdGroupCriterionApprovalStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AdGroupCriterionApprovalStatusEnum
*/
export declare const AdGroupCriterionApprovalStatusEnum: AdGroupCriterionApprovalStatusEnum$Type;
export {};