google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
58 lines (57 loc) • 2.37 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 quality evaluation approval statuses
* of a feed item.
*
* @generated from protobuf message google.ads.googleads.v11.enums.FeedItemQualityApprovalStatusEnum
*/
export interface FeedItemQualityApprovalStatusEnum {
}
/**
* The possible quality evaluation approval statuses of a feed item.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus
*/
export declare enum FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus {
/**
* No value has been 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,
/**
* Meets all quality expectations.
*
* @generated from protobuf enum value: APPROVED = 2;
*/
APPROVED = 2,
/**
* Does not meet some quality expectations. The specific reason is found in
* the quality_disapproval_reasons field.
*
* @generated from protobuf enum value: DISAPPROVED = 3;
*/
DISAPPROVED = 3
}
declare class FeedItemQualityApprovalStatusEnum$Type extends MessageType<FeedItemQualityApprovalStatusEnum> {
constructor();
create(value?: PartialMessage<FeedItemQualityApprovalStatusEnum>): FeedItemQualityApprovalStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedItemQualityApprovalStatusEnum): FeedItemQualityApprovalStatusEnum;
internalBinaryWrite(message: FeedItemQualityApprovalStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.FeedItemQualityApprovalStatusEnum
*/
export declare const FeedItemQualityApprovalStatusEnum: FeedItemQualityApprovalStatusEnum$Type;
export {};