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