dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 572 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { RichMediaStudioChildAssetPropertyType } from './richMediaStudioChildAssetPropertyType';
export declare class RichMediaStudioChildAssetProperty extends XMLElement {
protected static XSI_TYPE: string;
name: string;
type: RichMediaStudioChildAssetPropertyType;
totalFileSize: number;
width: number;
height: number;
url: string;
constructor(name?: string, type?: RichMediaStudioChildAssetPropertyType, totalFileSize?: number, width?: number, height?: number, url?: string);
}