@clearcodehq/openrtb
Version:
Library with OpenRTB spec types which allows to build and validate OpenRTB objects
19 lines (18 loc) • 416 B
TypeScript
import { Extensible, Flag, RawRecord } from './common';
import { Deal } from './deal';
import { Metric } from './metric';
export interface Item extends Extensible {
id: string;
qty?: number;
qtyflt?: number;
seq?: number;
flr?: number;
flrcur?: string;
exp?: number;
dt?: number;
dlvy?: number;
metric?: Metric[];
deal?: Deal[];
private?: Flag;
spec: RawRecord;
}