google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
89 lines (88 loc) • 3.65 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 reasons why a customer is not eligible to use
* PaymentMode.CONVERSIONS.
*
* @generated from protobuf message google.ads.googleads.v11.enums.CustomerPayPerConversionEligibilityFailureReasonEnum
*/
export interface CustomerPayPerConversionEligibilityFailureReasonEnum {
}
/**
* Enum describing possible reasons a customer is not eligible to use
* PaymentMode.CONVERSIONS.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason
*/
export declare enum CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason {
/**
* 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,
/**
* Customer does not have enough conversions.
*
* @generated from protobuf enum value: NOT_ENOUGH_CONVERSIONS = 2;
*/
NOT_ENOUGH_CONVERSIONS = 2,
/**
* Customer's conversion lag is too high.
*
* @generated from protobuf enum value: CONVERSION_LAG_TOO_HIGH = 3;
*/
CONVERSION_LAG_TOO_HIGH = 3,
/**
* Customer uses shared budgets.
*
* @generated from protobuf enum value: HAS_CAMPAIGN_WITH_SHARED_BUDGET = 4;
*/
HAS_CAMPAIGN_WITH_SHARED_BUDGET = 4,
/**
* Customer has conversions with ConversionActionType.UPLOAD_CLICKS.
*
* @generated from protobuf enum value: HAS_UPLOAD_CLICKS_CONVERSION = 5;
*/
HAS_UPLOAD_CLICKS_CONVERSION = 5,
/**
* Customer's average daily spend is too high.
*
* @generated from protobuf enum value: AVERAGE_DAILY_SPEND_TOO_HIGH = 6;
*/
AVERAGE_DAILY_SPEND_TOO_HIGH = 6,
/**
* Customer's eligibility has not yet been calculated by the Google Ads
* backend. Check back soon.
*
* @generated from protobuf enum value: ANALYSIS_NOT_COMPLETE = 7;
*/
ANALYSIS_NOT_COMPLETE = 7,
/**
* Customer is not eligible due to other reasons.
*
* @generated from protobuf enum value: OTHER = 8;
*/
OTHER = 8
}
declare class CustomerPayPerConversionEligibilityFailureReasonEnum$Type extends MessageType<CustomerPayPerConversionEligibilityFailureReasonEnum> {
constructor();
create(value?: PartialMessage<CustomerPayPerConversionEligibilityFailureReasonEnum>): CustomerPayPerConversionEligibilityFailureReasonEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomerPayPerConversionEligibilityFailureReasonEnum): CustomerPayPerConversionEligibilityFailureReasonEnum;
internalBinaryWrite(message: CustomerPayPerConversionEligibilityFailureReasonEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.CustomerPayPerConversionEligibilityFailureReasonEnum
*/
export declare const CustomerPayPerConversionEligibilityFailureReasonEnum: CustomerPayPerConversionEligibilityFailureReasonEnum$Type;
export {};