package com.ikea.shared.products.model;

import com.ikea.shared.stores.model.RetailItemCommChildAvailability;

public class RetailItemCommChild
{
  private String Aisle;
  private String ItemNo;
  private String ItemNoGlobal;
  private String ItemNumberOfPackages;
  private String ItemType;
  private String ItemUrl;
  private String Location;
  private String ProductName;
  private String ProductTypeName;
  private String ProoductNameGlobal;
  private Integer Quantity = Integer.valueOf(0);
  private RetailItemCommAttachmentList RetailItemCommAttachmentList;
  private RetailItemCommPackageMeasureList RetailItemCommPackageMeasureList;
  private RetailItemImageList RetailItemImageList;
  private String departmentName;
  private boolean isCollected = false;
  private RetailItemCommChildAvailability stockAvailability;
  private Integer totalQuantity = Integer.valueOf(0);

  public String getAisle()
  {
    return this.Aisle;
  }

  public String getDepartmentName()
  {
    return this.departmentName;
  }

  public String getItemNo()
  {
    return this.ItemNo;
  }

  public String getItemNoGlobal()
  {
    return this.ItemNoGlobal;
  }

  public String getItemNumberOfPackages()
  {
    return this.ItemNumberOfPackages;
  }

  public String getItemType()
  {
    return this.ItemType;
  }

  public String getItemUrl()
  {
    return this.ItemUrl;
  }

  public String getLocation()
  {
    return this.Location;
  }

  public String getProductName()
  {
    return this.ProductName;
  }

  public String getProductTypeName()
  {
    return this.ProductTypeName;
  }

  public String getProoductNameGlobal()
  {
    return this.ProoductNameGlobal;
  }

  public int getQuantity()
  {
    return this.Quantity.intValue();
  }

  public RetailItemCommAttachmentList getRetailItemCommAttachmentList()
  {
    return this.RetailItemCommAttachmentList;
  }

  public RetailItemCommPackageMeasureList getRetailItemCommPackageMeasureList()
  {
    return this.RetailItemCommPackageMeasureList;
  }

  public RetailItemImageList getRetailItemImageList()
  {
    return this.RetailItemImageList;
  }

  public RetailItemCommChildAvailability getStockAvailability()
  {
    return this.stockAvailability;
  }

  public int getTotalQuantity()
  {
    return this.totalQuantity.intValue();
  }

  public boolean isCollected()
  {
    return this.isCollected;
  }

  public void setAisle(String paramString)
  {
    this.Aisle = paramString;
  }

  public void setCollected(boolean paramBoolean)
  {
    this.isCollected = paramBoolean;
  }

  public void setDepartmentName(String paramString)
  {
    this.departmentName = paramString;
  }

  public void setItemNo(String paramString)
  {
    this.ItemNo = paramString;
  }

  public void setLocation(String paramString)
  {
    this.Location = paramString;
  }

  public void setQuantity(int paramInt)
  {
    this.Quantity = Integer.valueOf(paramInt);
  }

  public void setStockAvailability(RetailItemCommChildAvailability paramRetailItemCommChildAvailability)
  {
    this.stockAvailability = paramRetailItemCommChildAvailability;
  }

  public void setTotalQuantity(int paramInt)
  {
    this.totalQuantity = Integer.valueOf(paramInt);
  }

  public String toString()
  {
    return "RetailItemCommChild [ItemNo=" + this.ItemNo + ", ItemNoGlobal=" + this.ItemNoGlobal + ", ItemType=" + this.ItemType + ", Quantity=" + this.Quantity + ", ItemUrl=" + this.ItemUrl + ", ProductName=" + this.ProductName + ", ProoductNameGlobal=" + this.ProoductNameGlobal + ", ProductTypeName=" + this.ProductTypeName + ", ItemNumberOfPackages=" + this.ItemNumberOfPackages + ", RetailItemCommPackageMeasureList=" + this.RetailItemCommPackageMeasureList + ", RetailItemImageList=" + this.RetailItemImageList + ", RetailItemCommAttachmentList=" + this.RetailItemCommAttachmentList + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.products.model.RetailItemCommChild
 * JD-Core Version:    0.6.2
 */