All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weiboclient4j.model.UrlReferer Maven / Gradle / Ivy

There is a newer version: 0.4.16
Show newest version
package weiboclient4j.model;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;

/**
 * @author Hover Ruan
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class UrlReferer {
    private int clicks;
    private String referer;

    public int getClicks() {
        return clicks;
    }

    public void setClicks(int clicks) {
        this.clicks = clicks;
    }

    public String getReferer() {
        return referer;
    }

    public void setReferer(String referer) {
        this.referer = referer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy