ItemUpdateBulklistingResponse.java :  » API » taobaoonandroid » com » taobao » api » model » Android Open Source

Android Open Source » API » taobaoonandroid 
taobaoonandroid » com » taobao » api » model » ItemUpdateBulklistingResponse.java
/**
 * 
 */
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;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.