package com.newinternaldsp.Entity;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Imp{
    public String id;
    public int bidfloor;
    public Banner banner;
    public Pmp pmp;
    private int instl;

    
	public Imp() {
		super();
	}


	public Imp(String id, int bidfloor, Banner banner, Pmp pmp, int instl) {
		super();
		this.id = id;
		this.bidfloor = bidfloor;
		this.banner = banner;
		this.pmp = pmp;
		this.instl = instl;
	}


	public String getId() {
		return id;
	}


	public void setId(String id) {
		this.id = id;
	}


	public int getBidfloor() {
		return bidfloor;
	}


	public void setBidfloor(int bidfloor) {
		this.bidfloor = bidfloor;
	}


	public Banner getBanner() {
		return banner;
	}


	public void setBanner(Banner banner) {
		this.banner = banner;
	}


	public Pmp getPmp() {
		return pmp;
	}


	public void setPmp(Pmp pmp) {
		this.pmp = pmp;
	}


	public int getInstl() {
		return instl;
	}


	public void setInstl(int instl) {
		this.instl = instl;
	}
	
    
    
}