weiboclient4j.model.SenderApp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weiboclient4j Show documentation
Show all versions of weiboclient4j Show documentation
Java library for Sina Weibo
The newest version!
package weiboclient4j.model;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
/**
* @author Hover Ruan
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class SenderApp {
private String appkey62;
public String getAppkey62() {
return appkey62;
}
public void setAppkey62(String appkey62) {
this.appkey62 = appkey62;
}
}