@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
23 lines (22 loc) • 632 B
TypeScript
import { Size } from './Size';
export declare enum EnvironmentType {
BROWSER = "BROWSER",
VIDEO_PLAYER = "VIDEO_PLAYER"
}
/**
* suggestedAdUnitSizes
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface SuggestedAdUnitSizes {
/** size */
size?: Size;
/** EnvironmentType|xsd:string|BROWSER,VIDEO_PLAYER */
environmentType?: EnvironmentType | keyof typeof EnvironmentType;
/** companions[] */
companions?: Array<SuggestedAdUnitSizes>;
/** xsd:string */
fullDisplayString?: string;
/** xsd:boolean */
isAudio?: boolean;
}