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 data types for call conversion * reporting state. * * @generated from protobuf message google.ads.googleads.v11.enums.CallConversionReportingStateEnum */ export interface CallConversionReportingStateEnum { } /** * Possible data types for a call conversion action state. * * @generated from protobuf enum google.ads.googleads.v11.enums.CallConversionReportingStateEnum.CallConversionReportingState */ export declare enum CallConversionReportingStateEnum_CallConversionReportingState { /** * 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, /** * Call conversion action is disabled. * * @generated from protobuf enum value: DISABLED = 2; */ DISABLED = 2, /** * Call conversion action will use call conversion type set at the * account level. * * @generated from protobuf enum value: USE_ACCOUNT_LEVEL_CALL_CONVERSION_ACTION = 3; */ USE_ACCOUNT_LEVEL_CALL_CONVERSION_ACTION = 3, /** * Call conversion action will use call conversion type set at the resource * (call only ads/call extensions) level. * * @generated from protobuf enum value: USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION = 4; */ USE_RESOURCE_LEVEL_CALL_CONVERSION_ACTION = 4 } declare class CallConversionReportingStateEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): CallConversionReportingStateEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CallConversionReportingStateEnum): CallConversionReportingStateEnum; internalBinaryWrite(message: CallConversionReportingStateEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.CallConversionReportingStateEnum */ export declare const CallConversionReportingStateEnum: CallConversionReportingStateEnum$Type; export {};