UNPKG

@clearcodehq/openrtb

Version:

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

11 lines (10 loc) 242 B
import { Extensible } from './common'; import { SeatBid } from './seatBid'; export interface Response extends Extensible { id: string; bidid?: string; nbr?: number; cur?: string; cdata?: string; seatbid?: SeatBid[]; }