@clearcodehq/openrtb
Version:
Library with OpenRTB spec types which allows to build and validate OpenRTB objects
18 lines (17 loc) • 421 B
TypeScript
import { AuctionType, Extensible, Flag, RawRecord } from './common';
import { Item } from './item';
import { Source } from './source';
export interface Request extends Extensible {
id: string;
test?: Flag;
tmax?: number;
at?: AuctionType;
cur?: string[];
seat?: string[];
wseat?: Flag;
cdata?: string;
source?: Source;
item?: Item[];
package?: Flag;
context?: RawRecord;
}