@clearcodehq/openrtb
Version:
Library with OpenRTB spec types which allows to build and validate OpenRTB objects
20 lines (19 loc) • 473 B
TypeScript
import { Extensible, Flag } from './common';
import { Content } from './content';
import { Publisher } from './publisher';
export interface App extends Extensible {
id?: string;
name?: string;
bundle?: string;
domain?: string;
storeurl?: string;
cat?: string[];
sectioncat?: string[];
pagecat?: string[];
ver?: string;
privacypolicy?: Flag;
paid?: Flag;
publisher?: Publisher;
content?: Content;
keywords?: string;
}