UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

19 lines (18 loc) 780 B
import { XMLElement } from '../../common/soap/xmlElement'; import { ScalableType } from './scalableType'; import { Size } from './size'; import { MimeType } from './mimeType'; import { VideoDeliveryType } from './videoDeliveryType'; export declare class VideoMetadata extends XMLElement { protected static XSI_TYPE: string; scalableType: ScalableType; duration: number; bitRate: number; minimumBitRate: number; maximumBitRate: number; size: Size; mimeType: MimeType; deliveryType: VideoDeliveryType; codecs: string[]; constructor(scalableType?: ScalableType, duration?: number, bitRate?: number, minimumBitRate?: number, maximumBitRate?: number, size?: Size, mimeType?: MimeType, deliveryType?: VideoDeliveryType, codecs?: string[]); }