dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 402 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { ProgressRule } from './progressRule';
import { EvaluationStatus } from './evaluationStatus';
export declare class ProgressStep extends XMLElement {
protected static XSI_TYPE: string;
rules: ProgressRule[];
evaluationStatus: EvaluationStatus;
constructor(rules?: ProgressRule[], evaluationStatus?: EvaluationStatus);
}