dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 634 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { ProgressAction } from './progressAction';
import { WorkflowEvaluationStatus } from './workflowEvaluationStatus';
import { DfpDateTime } from './dfpDateTime';
export declare class ProgressRule extends XMLElement {
protected static XSI_TYPE: string;
actions: ProgressAction[];
name: string;
evaluationStatus: WorkflowEvaluationStatus;
evaluationTime: DfpDateTime;
isExternal: boolean;
constructor(actions?: ProgressAction[], name?: string, evaluationStatus?: WorkflowEvaluationStatus, evaluationTime?: DfpDateTime, isExternal?: boolean);
}