google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
51 lines (50 loc) • 2.04 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";
/**
* Indicates the reason why the userlist was closed.
* This enum is only used when a list is auto-closed by the system.
*
* @generated from protobuf message google.ads.googleads.v11.enums.UserListClosingReasonEnum
*/
export interface UserListClosingReasonEnum {
}
/**
* Enum describing possible user list closing reasons.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.UserListClosingReasonEnum.UserListClosingReason
*/
export declare enum UserListClosingReasonEnum_UserListClosingReason {
/**
* 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 userlist was closed because of not being used for over one year.
*
* @generated from protobuf enum value: UNUSED = 2;
*/
UNUSED = 2
}
declare class UserListClosingReasonEnum$Type extends MessageType<UserListClosingReasonEnum> {
constructor();
create(value?: PartialMessage<UserListClosingReasonEnum>): UserListClosingReasonEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserListClosingReasonEnum): UserListClosingReasonEnum;
internalBinaryWrite(message: UserListClosingReasonEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.UserListClosingReasonEnum
*/
export declare const UserListClosingReasonEnum: UserListClosingReasonEnum$Type;
export {};