package com.ikea.shared.products.model;

import com.google.gson.annotations.SerializedName;

public class ComparableUnitPrice
{

  @SerializedName("UnitPriceImperial")
  private String UnitPriceImperial;

  @SerializedName("UnitPriceImperialExclTax")
  private String UnitPriceImperialExclTax;

  @SerializedName("UnitPriceMetric")
  private String UnitPriceMetric;

  @SerializedName("UnitPriceMetricExclTax")
  private String UnitPriceMetricExclTax;

  public String getUnitPriceImperial()
  {
    return this.UnitPriceImperial;
  }

  public String getUnitPriceImperialExclTax()
  {
    return this.UnitPriceImperialExclTax;
  }

  public String getUnitPriceMetric()
  {
    return this.UnitPriceMetric;
  }

  public String getUnitPriceMetricExclTax()
  {
    return this.UnitPriceMetricExclTax;
  }

  public String toString()
  {
    return "ComparableUnitPrice [UnitPriceMetric=" + this.UnitPriceMetric + ", UnitPriceMetricExclTax=" + this.UnitPriceMetricExclTax + ", UnitPriceImperial=" + this.UnitPriceImperial + ", UnitPriceImperialExclTax=" + this.UnitPriceImperialExclTax + "]";
  }
}

/* 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.ComparableUnitPrice
 * JD-Core Version:    0.6.2
 */