google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
100 lines (99 loc) • 3.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 describing reasons match rate ranges for a customer match
* list upload.
*
* @generated from protobuf message google.ads.googleads.v11.enums.OfflineUserDataJobMatchRateRangeEnum
*/
export interface OfflineUserDataJobMatchRateRangeEnum {
}
/**
* The match rate range of an offline user data job.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange
*/
export declare enum OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* Default value for match rate range.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Match rate range for offline data upload entity is between 0% and 19%.
*
* @generated from protobuf enum value: MATCH_RANGE_LESS_THAN_20 = 2;
*/
MATCH_RANGE_LESS_THAN_20 = 2,
/**
* Match rate range for offline data upload entity is between 20% and 30%.
*
* @generated from protobuf enum value: MATCH_RANGE_20_TO_30 = 3;
*/
MATCH_RANGE_20_TO_30 = 3,
/**
* Match rate range for offline data upload entity is between 31% and 40%.
*
* @generated from protobuf enum value: MATCH_RANGE_31_TO_40 = 4;
*/
MATCH_RANGE_31_TO_40 = 4,
/**
* Match rate range for offline data upload entity is between 41% and 50%.
*
* @generated from protobuf enum value: MATCH_RANGE_41_TO_50 = 5;
*/
MATCH_RANGE_41_TO_50 = 5,
/**
* Match rate range for offline data upload entity is between 51% and 60%.
*
* @generated from protobuf enum value: MATCH_RANGE_51_TO_60 = 6;
*/
MATCH_RANGE_51_TO_60 = 6,
/**
* Match rate range for offline data upload entity is between 61% and 70%.
*
* @generated from protobuf enum value: MATCH_RANGE_61_TO_70 = 7;
*/
MATCH_RANGE_61_TO_70 = 7,
/**
* Match rate range for offline data upload entity is between 71% and 80%.
*
* @generated from protobuf enum value: MATCH_RANGE_71_TO_80 = 8;
*/
MATCH_RANGE_71_TO_80 = 8,
/**
* Match rate range for offline data upload entity is between 81% and 90%.
*
* @generated from protobuf enum value: MATCH_RANGE_81_TO_90 = 9;
*/
MATCH_RANGE_81_TO_90 = 9,
/**
* Match rate range for offline data upload entity more than or equal to
* 91%.
*
* @generated from protobuf enum value: MATCH_RANGE_91_TO_100 = 10;
*/
MATCH_RANGE_91_TO_100 = 10
}
declare class OfflineUserDataJobMatchRateRangeEnum$Type extends MessageType<OfflineUserDataJobMatchRateRangeEnum> {
constructor();
create(value?: PartialMessage<OfflineUserDataJobMatchRateRangeEnum>): OfflineUserDataJobMatchRateRangeEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: OfflineUserDataJobMatchRateRangeEnum): OfflineUserDataJobMatchRateRangeEnum;
internalBinaryWrite(message: OfflineUserDataJobMatchRateRangeEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.OfflineUserDataJobMatchRateRangeEnum
*/
export declare const OfflineUserDataJobMatchRateRangeEnum: OfflineUserDataJobMatchRateRangeEnum$Type;
export {};