dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 399 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { WorkflowRequest } from './workflowRequest';
export declare class WorkflowRequestPage extends XMLElement {
protected static XSI_TYPE: string;
results: WorkflowRequest[];
startIndex: number;
totalResultSetSize: number;
constructor(results?: WorkflowRequest[], startIndex?: number, totalResultSetSize?: number);
}