google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
72 lines (71 loc) • 2.49 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 statuses of a customer.
*
* @generated from protobuf message google.ads.googleads.v11.enums.CustomerStatusEnum
*/
export interface CustomerStatusEnum {
}
/**
* Possible statuses of a customer.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.CustomerStatusEnum.CustomerStatus
*/
export declare enum CustomerStatusEnum_CustomerStatus {
/**
* 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,
/**
* Indicates an active account able to serve ads.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* Indicates a canceled account unable to serve ads.
* Can be reactivated by an admin user.
*
* @generated from protobuf enum value: CANCELED = 3;
*/
CANCELED = 3,
/**
* Indicates a suspended account unable to serve ads.
* May only be activated by Google support.
*
* @generated from protobuf enum value: SUSPENDED = 4;
*/
SUSPENDED = 4,
/**
* Indicates a closed account unable to serve ads.
* Test account will also have CLOSED status.
* Status is permanent and may not be reopened.
*
* @generated from protobuf enum value: CLOSED = 5;
*/
CLOSED = 5
}
declare class CustomerStatusEnum$Type extends MessageType<CustomerStatusEnum> {
constructor();
create(value?: PartialMessage<CustomerStatusEnum>): CustomerStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomerStatusEnum): CustomerStatusEnum;
internalBinaryWrite(message: CustomerStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.CustomerStatusEnum
*/
export declare const CustomerStatusEnum: CustomerStatusEnum$Type;
export {};