gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
17 lines (16 loc) • 510 B
TypeScript
import { BaseObject } from './baseObject';
import { MimeType } from './mimeType';
import { ScalableType } from './scalableType';
import { Size } from './size';
import { VideoDeliveryType } from './videoDeliveryType';
export interface VideoMetadata extends BaseObject {
scalableType?: ScalableType;
duration?: number;
bitRate?: number;
minimumBitRate?: number;
maximumBitRate?: number;
size?: Size;
mimeType?: MimeType;
deliveryType?: VideoDeliveryType;
codecs?: string[];
}