UNPKG

@clearcodehq/openrtb

Version:

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

19 lines (18 loc) 386 B
import { Extensible } from './common'; import { Data } from './data'; import { Geo } from './geo'; export declare enum Gender { Male = "M", Female = "F", Other = "O" } export interface User extends Extensible { id?: string; buyeruid?: string; yob?: number; gender?: Gender; keywords?: string; customdata?: string; geo?: Geo; data?: Data[]; }