package com.ikea.shared.products.model;

public class RetailItemFee
{
  private String CurrencyCode;
  private Float FeeAmount = Float.valueOf(0.0F);
  private String FeeType;

  public String getCurrencyCode()
  {
    return this.CurrencyCode;
  }

  public float getFeeAmount()
  {
    return this.FeeAmount.floatValue();
  }

  public String getFeeType()
  {
    return this.FeeType;
  }

  public String toString()
  {
    return "RetailItemFee [FeeType=" + this.FeeType + ", FeeAmount=" + this.FeeAmount + ", CurrencyCode=" + this.CurrencyCode + "]";
  }
}

/* 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.RetailItemFee
 * JD-Core Version:    0.6.2
 */