weixin.popular.bean.media.Media Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.media;
import weixin.popular.bean.BaseResult;
public class Media extends BaseResult{
private String type;
private String media_id;
private Integer created_at;
private String url;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getMedia_id() {
return media_id;
}
public void setMedia_id(String mediaId) {
media_id = mediaId;
}
public Integer getCreated_at() {
return created_at;
}
public void setCreated_at(Integer createdAt) {
created_at = createdAt;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}