dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
8 lines (7 loc) • 385 B
TypeScript
import { ApiError } from './apiError';
import { EntityLimitReachedErrorReason } from './entityLimitReachedErrorReason';
export declare class EntityLimitReachedError extends ApiError {
protected static XSI_TYPE: string;
reason: EntityLimitReachedErrorReason;
constructor(reason?: EntityLimitReachedErrorReason, fieldPath?: string, trigger?: string, errorString?: string);
}