@missena/openrtb-types

0.1.0 • Public • Published

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],
};

Readme

Keywords

none

Package Sidebar

Install

npm i @missena/openrtb-types

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

41.9 kB

Total Files

47

Last publish

Collaborators

  • jney