package com.ikea.shared.user.model;

import com.google.gson.annotations.SerializedName;

public class Profile
{

  @SerializedName("SessionContext")
  private SessionContext SessionContext;

  @SerializedName("CustomerProfile")
  private Customer mCustomer;

  public Customer getCustomer()
  {
    return this.mCustomer;
  }

  public SessionContext getSessionContext()
  {
    return this.SessionContext;
  }

  public String toString()
  {
    return "Profile [SessionContext=" + this.SessionContext + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.user.model.Profile
 * JD-Core Version:    0.6.2
 */