package com.anand.geofence.model.response;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Ad {
    @SerializedName("response")
    @Expose
    private String response;
    @SerializedName("error")
    @Expose
    private java.lang.Error error;
    @SerializedName("imp_url")
    @Expose
    private String impUrl;
    @SerializedName("ad_type")
    @Expose
    private String adType;
    @SerializedName("ad_tag")
    @Expose
    private String adTag;
    @SerializedName("click_url")
    @Expose
    private String clickUrl;
    @SerializedName("width")
    @Expose
    private String width;
    @SerializedName("height")
    @Expose
    private String height;
    @SerializedName("image_path")
    @Expose
    private String imagePath;
    @SerializedName("App_type")
    @Expose
    private String appType;
    @SerializedName("ad_check")
    @Expose
    private Integer adCheck;
    @SerializedName("logourl")
    @Expose
    private String logourl;
    @SerializedName("layout")
    @Expose
    private String layout;
    @SerializedName("ad_values")
    @Expose
    private AdValues adValues;

    public String getResponse() {
        return response;
    }

    public void setResponse(String response) {
        this.response = response;
    }

    public java.lang.Error getError() {
        return error;
    }

    public void setError(java.lang.Error error) {
        this.error = error;
    }

    public String getImpUrl() {
        return impUrl;
    }

    public void setImpUrl(String impUrl) {
        this.impUrl = impUrl;
    }

    public String getAdType() {
        return adType;
    }

    public void setAdType(String adType) {
        this.adType = adType;
    }

    public String getAdTag() {
        return adTag;
    }

    public void setAdTag(String adTag) {
        this.adTag = adTag;
    }

    public String getClickUrl() {
        return clickUrl;
    }

    public void setClickUrl(String clickUrl) {
        this.clickUrl = clickUrl;
    }

    public String getWidth() {
        return width;
    }

    public void setWidth(String width) {
        this.width = width;
    }

    public String getHeight() {
        return height;
    }

    public void setHeight(String height) {
        this.height = height;
    }

    public String getImagePath() {
        return imagePath;
    }

    public void setImagePath(String imagePath) {
        this.imagePath = imagePath;
    }

    public String getAppType() {
        return appType;
    }

    public void setAppType(String appType) {
        this.appType = appType;
    }

    public Integer getAdCheck() {
        return adCheck;
    }

    public void setAdCheck(Integer adCheck) {
        this.adCheck = adCheck;
    }

    public String getLogourl() {
        return logourl;
    }

    public void setLogourl(String logourl) {
        this.logourl = logourl;
    }

    public String getLayout() {
        return layout;
    }

    public void setLayout(String layout) {
        this.layout = layout;
    }

    public AdValues getAdValues() {
        return adValues;
    }

    public void setAdValues(AdValues adValues) {
        this.adValues = adValues;
    }
}
