/**
*
*/
package com.taobao.api.model;
import java.util.Date;
/**
* The response result of the calling of the taobao.item.update.bulklisting,
* which are iid of the item and the modified time.
*
* @author biyi
*
*/
public class ItemUpdateBulklistingResponse extends TaobaoResponse {
/**
*
*/
private static final long serialVersionUID = -2672435868718311291L;
private String iid;
private Date modified;
public ItemUpdateBulklistingResponse() {
super();
}
public ItemUpdateBulklistingResponse(TaobaoResponse rsp) {
super(rsp);
}
public String getIid() {
return iid;
}
public void setIid(String iid) {
this.iid = iid;
}
public Date getModified() {
return modified;
}
public void setModified(Date modified) {
this.modified = modified;
}
}
|