package com.ikea.shared.browse.model;

public class Error
{
  private String isSuccessful;
  private String reason;
  private int statusCode;

  public String getIsSuccessful()
  {
    return this.isSuccessful;
  }

  public String getReason()
  {
    return this.reason;
  }

  public int getStatusCode()
  {
    return this.statusCode;
  }

  public String toString()
  {
    return "Errors [statusCode=" + this.statusCode + ", isSuccessful=" + this.isSuccessful + ", reason=" + this.reason + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.browse.model.Error
 * JD-Core Version:    0.6.2
 */