google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
74 lines (73 loc) • 2.82 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 indicating data driven model status.
*
* @generated from protobuf message google.ads.googleads.v11.enums.DataDrivenModelStatusEnum
*/
export interface DataDrivenModelStatusEnum {
}
/**
* Enumerates data driven model statuses.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus
*/
export declare enum DataDrivenModelStatusEnum_DataDrivenModelStatus {
/**
* 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 data driven model is available.
*
* @generated from protobuf enum value: AVAILABLE = 2;
*/
AVAILABLE = 2,
/**
* The data driven model is stale. It hasn't been updated for at least 7
* days. It is still being used, but will become expired if it does not get
* updated for 30 days.
*
* @generated from protobuf enum value: STALE = 3;
*/
STALE = 3,
/**
* The data driven model expired. It hasn't been updated for at least 30
* days and cannot be used. Most commonly this is because there hasn't been
* the required number of events in a recent 30-day period.
*
* @generated from protobuf enum value: EXPIRED = 4;
*/
EXPIRED = 4,
/**
* The data driven model has never been generated. Most commonly this is
* because there has never been the required number of events in any 30-day
* period.
*
* @generated from protobuf enum value: NEVER_GENERATED = 5;
*/
NEVER_GENERATED = 5
}
declare class DataDrivenModelStatusEnum$Type extends MessageType<DataDrivenModelStatusEnum> {
constructor();
create(value?: PartialMessage<DataDrivenModelStatusEnum>): DataDrivenModelStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DataDrivenModelStatusEnum): DataDrivenModelStatusEnum;
internalBinaryWrite(message: DataDrivenModelStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.DataDrivenModelStatusEnum
*/
export declare const DataDrivenModelStatusEnum: DataDrivenModelStatusEnum$Type;
export {};