@missena/openrtb-types
v0.1.0
Published
IAB's OpenRTB v2.5 spec types and enums in TypeScript
Downloads
1
Readme
OpenRTB v2.5 Types & Enums
This package includes all of IAB's OpenRTB v2.5 spec types and enums in TypeScript.
Installation
Using npm:
$ npm i --save openrtb-types
Usage
Import needed types and use them to type-guard your code:
import { SeatBid, Bid, BidResponse } from "openrtb-types";
let bid: Bid = {
id: "abc",
impid: "abc",
price: 1.23,
};
let seatBid: SeatBid = {
bid: [bid],
};
let bidResponse: BidResponse = {
id: "abc",
seatbid: [seatBid],
};