package com.yanzuoguang.wxxcx.servicecustomer.uploadtempmedia; import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError; /** * 把媒体文件上传到微信服务器 响应 * * @author 李贤军 */ public class WxXcxCustomerServiceMessageUploadTempMediaRes extends WxXcxResponseBaseError { /** * 文件类型 */ private String type; /** * 媒体文件上传后,获取标识,3天内有效。 */ private String media_id; /** * 媒体文件上传时间戳 */ private double created_at; 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 media_id) { this.media_id = media_id; } public double getCreated_at() { return created_at; } public void setCreated_at(double created_at) { this.created_at = created_at; } }