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.27 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 validation statuses of a feed item.
*
* @generated from protobuf message google.ads.googleads.v11.enums.FeedItemValidationStatusEnum
*/
export interface FeedItemValidationStatusEnum {
}
/**
* The possible validation statuses of a feed item.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus
*/
export declare enum FeedItemValidationStatusEnum_FeedItemValidationStatus {
/**
* 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,
/**
* Validation pending.
*
* @generated from protobuf enum value: PENDING = 2;
*/
PENDING = 2,
/**
* An error was found.
*
* @generated from protobuf enum value: INVALID = 3;
*/
INVALID = 3,
/**
* Feed item is semantically well-formed.
*
* @generated from protobuf enum value: VALID = 4;
*/
VALID = 4
}
declare class FeedItemValidationStatusEnum$Type extends MessageType<FeedItemValidationStatusEnum> {
constructor();
create(value?: PartialMessage<FeedItemValidationStatusEnum>): FeedItemValidationStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedItemValidationStatusEnum): FeedItemValidationStatusEnum;
internalBinaryWrite(message: FeedItemValidationStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.FeedItemValidationStatusEnum
*/
export declare const FeedItemValidationStatusEnum: FeedItemValidationStatusEnum$Type;
export {};