google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
63 lines (62 loc) • 2.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 possible policy validation parameter errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.PolicyValidationParameterErrorEnum
*/
export interface PolicyValidationParameterErrorEnum {
}
/**
* Enum describing possible policy validation parameter errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
*/
export declare enum PolicyValidationParameterErrorEnum_PolicyValidationParameterError {
/**
* Enum unspecified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The received error code is not known in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Ignorable policy topics are not supported for the ad type.
*
* @generated from protobuf enum value: UNSUPPORTED_AD_TYPE_FOR_IGNORABLE_POLICY_TOPICS = 2;
*/
UNSUPPORTED_AD_TYPE_FOR_IGNORABLE_POLICY_TOPICS = 2,
/**
* Exempt policy violation keys are not supported for the ad type.
*
* @generated from protobuf enum value: UNSUPPORTED_AD_TYPE_FOR_EXEMPT_POLICY_VIOLATION_KEYS = 3;
*/
UNSUPPORTED_AD_TYPE_FOR_EXEMPT_POLICY_VIOLATION_KEYS = 3,
/**
* Cannot set ignorable policy topics and exempt policy violation keys in
* the same policy violation parameter.
*
* @generated from protobuf enum value: CANNOT_SET_BOTH_IGNORABLE_POLICY_TOPICS_AND_EXEMPT_POLICY_VIOLATION_KEYS = 4;
*/
CANNOT_SET_BOTH_IGNORABLE_POLICY_TOPICS_AND_EXEMPT_POLICY_VIOLATION_KEYS = 4
}
declare class PolicyValidationParameterErrorEnum$Type extends MessageType<PolicyValidationParameterErrorEnum> {
constructor();
create(value?: PartialMessage<PolicyValidationParameterErrorEnum>): PolicyValidationParameterErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PolicyValidationParameterErrorEnum): PolicyValidationParameterErrorEnum;
internalBinaryWrite(message: PolicyValidationParameterErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.PolicyValidationParameterErrorEnum
*/
export declare const PolicyValidationParameterErrorEnum: PolicyValidationParameterErrorEnum$Type;
export {};