nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
16 lines (15 loc) • 465 B
TypeScript
import { IFieldPathElement } from './FieldPathElement';
import { BatchJobProcessingError } from './enum/BatchJobProcessingError';
export interface IApiError {
fieldPath: string;
fieldPathElements: IFieldPathElement[];
trigger: string;
errorString: string;
'ApiError.Type'?: string;
}
export interface IBatchJobProcessingError {
reason: BatchJobProcessingError.Reason;
attibutes: {
'xsi:type': 'BatchJobProcessingError';
};
}