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