0.1.0 • Published 1 year ago

@missena/openrtb-types v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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