package com.anand.geofence.model.response.geoResponse;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

import java.util.List;

public class Ads {
    @SerializedName("zoneid")
    @Expose
    private String zoneid;
    @SerializedName("ad_type")
    @Expose
    private String adType;
    @SerializedName("push_notification")
    @Expose
    private String pushNotification;
    @SerializedName("notification_desc")
    @Expose
    private String notificationDesc;
    @SerializedName("notification_title")
    @Expose
    private String notificationTitle;
    @SerializedName("imp_url")
    @Expose
    private String impUrl;
    @SerializedName("click_url")
    @Expose
    private String clickUrl;
    @SerializedName("geo_val")
    @Expose
    private List<GeoVal> geoVal;

    public String getZoneid() {
        return zoneid;
    }

    public void setZoneid(String zoneid) {
        this.zoneid = zoneid;
    }

    public String getAdType() {
        return adType;
    }

    public void setAdType(String adType) {
        this.adType = adType;
    }

    public String getPushNotification() {
        return pushNotification;
    }

    public void setPushNotification(String pushNotification) {
        this.pushNotification = pushNotification;
    }

    public String getNotificationDesc() {
        return notificationDesc;
    }

    public void setNotificationDesc(String notificationDesc) {
        this.notificationDesc = notificationDesc;
    }

    public String getNotificationTitle() {
        return notificationTitle;
    }

    public void setNotificationTitle(String notificationTitle) {
        this.notificationTitle = notificationTitle;
    }

    public String getImpUrl() {
        return impUrl;
    }

    public void setImpUrl(String impUrl) {
        this.impUrl = impUrl;
    }

    public String getClickUrl() {
        return clickUrl;
    }

    public void setClickUrl(String clickUrl) {
        this.clickUrl = clickUrl;
    }

    public List<GeoVal> getGeoVal() {
        return geoVal;
    }

    public void setGeoVal(List<GeoVal> geoVal) {
        this.geoVal = geoVal;
    }
}
