UNPKG

@clearcodehq/openrtb

Version:

Library with OpenRTB spec types which allows to build and validate OpenRTB objects

20 lines (19 loc) 472 B
import { Extensible, Flag } from './common'; import { Content } from './content'; import { Publisher } from './publisher'; export interface Site extends Extensible { id?: string; name?: string; domain?: string; cat?: string[]; sectioncat?: string[]; pagecat?: string[]; page?: string; ref?: string; search?: string; mobile?: Flag; privacypolicy?: Flag; publisher?: Publisher; content?: Content; keywords?: string; }