gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
11 lines (10 loc) • 359 B
TypeScript
import { BaseObject } from './baseObject';
import { WorkflowEntityType } from './workflowEntityType';
import { WorkflowRequestType } from './workflowRequestType';
export interface WorkflowRequest extends BaseObject {
id?: number;
workflowRuleName?: string;
entityId?: number;
entityType?: WorkflowEntityType;
type?: WorkflowRequestType;
}