UNPKG

@mediarithmics/plugins-nodejs-sdk

Version:

This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate

14 lines (12 loc) 237 B
export interface BidDecision { bids: Bid[]; } export interface Bid { index: number; bid_price: number; sale_condition_id: string; debug?: string; model_id?: string; model_parameter?: string; creative_variant?: string; }