@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
17 lines (16 loc) • 386 B
TypeScript
import { Resolution } from './Resolution';
/**
* videoSettings
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
*/
export interface VideoSettings {
/** xsd:string */
codec?: string;
/** xsd:long */
bitrate?: number;
/** xsd:double */
framesPerSecond?: number;
/** resolution */
resolution?: Resolution;
}