dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 550 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { WorkflowEntityType } from './workflowEntityType';
import { WorkflowRequestType } from './workflowRequestType';
export declare class WorkflowRequest extends XMLElement {
protected static XSI_TYPE: string;
id: number;
workflowRuleName: string;
entityId: number;
entityType: WorkflowEntityType;
type: WorkflowRequestType;
constructor(id?: number, workflowRuleName?: string, entityId?: number, entityType?: WorkflowEntityType, type?: WorkflowRequestType);
}