UNPKG

@clearcodehq/openrtb

Version:

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

8 lines (7 loc) 175 B
import { Extensible, Flag } from './common'; import { Bid } from './bid'; export interface SeatBid extends Extensible { bid: Bid[]; seat?: string; group?: Flag; }