@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
15 lines (13 loc) • 300 B
text/typescript
import { UserActivity } from "../../../../index";
export interface BidOptimizerPluginResponse {
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;
}