package com.ikea.shared;

import com.ikea.shared.user.model.AuthResponse;

public class StickyResponse
{
  private final AppError errors;
  private final Exception exception;
  private final long requestID;
  private final AuthResponse result;

  public StickyResponse(long paramLong, AuthResponse paramAuthResponse, AppError paramAppError, Exception paramException)
  {
    this.requestID = paramLong;
    this.result = paramAuthResponse;
    this.errors = paramAppError;
    this.exception = paramException;
  }

  public AppError getErrors()
  {
    return this.errors;
  }

  public Exception getException()
  {
    return this.exception;
  }

  public long getRequestID()
  {
    return this.requestID;
  }

  public AuthResponse getResult()
  {
    return this.result;
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.StickyResponse
 * JD-Core Version:    0.6.2
 */