@clearcodehq/openrtb
Version:
Library with OpenRTB spec types which allows to build and validate OpenRTB objects
12 lines (11 loc) • 503 B
JavaScript
;
// Copyright (C) 2021 by Clearcode <https://clearcode.cc>
// and associates (see AUTHORS).
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuctionType = void 0;
var AuctionType;
(function (AuctionType) {
AuctionType[AuctionType["FirstPrice"] = 1] = "FirstPrice";
AuctionType[AuctionType["SecondPrice"] = 2] = "SecondPrice";
AuctionType[AuctionType["AgreedPrice"] = 3] = "AgreedPrice";
})(AuctionType = exports.AuctionType || (exports.AuctionType = {}));