dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 575 B
TypeScript
import { WorkflowRequest } from './workflowRequest';
import { WorkflowEvaluationStatus } from './workflowEvaluationStatus';
import { WorkflowEntityType } from './workflowEntityType';
import { WorkflowRequestType } from './workflowRequestType';
export declare class WorkflowExternalConditionRequest extends WorkflowRequest {
protected static XSI_TYPE: string;
status: WorkflowEvaluationStatus;
constructor(status?: WorkflowEvaluationStatus, id?: number, workflowRuleName?: string, entityId?: number, entityType?: WorkflowEntityType, type?: WorkflowRequestType);
}