package com.ikea.shared.config.model;

import com.google.gson.annotations.SerializedName;
import com.ikea.shared.browse.model.BaseResponse;
import com.ikea.shared.util.Persistable;

public class KillSwitchConfig extends BaseResponse
  implements Persistable
{

  @SerializedName("catalogCache")
  private CatalogCache catlogCache;

  @SerializedName("doLogout")
  private boolean isDoLogout = true;

  @SerializedName("performStockCheck")
  private boolean isPerformStockCheck = true;

  @SerializedName("showCampaigns")
  private boolean isShowCampaigns = true;

  @SerializedName("showStore")
  private boolean isShowStoreInfo = true;

  @SerializedName("syncShoppingBag")
  private boolean isSyncShoppingBag = true;

  @SerializedName("alert")
  private ConfigAlert mAlertConfig;
  private long mLastUpdatedTime = 0L;

  public ConfigAlert getAlertDetails()
  {
    return this.mAlertConfig;
  }

  public CatalogCache getCatlogCache()
  {
    return this.catlogCache;
  }

  public String getId()
  {
    return "KillSwithConfig";
  }

  public long getLastUpdatedTime()
  {
    return this.mLastUpdatedTime;
  }

  public boolean isLogout()
  {
    return this.isDoLogout;
  }

  public boolean isPerformStockCheck()
  {
    return this.isPerformStockCheck;
  }

  public boolean isShowCampaigns()
  {
    return this.isShowCampaigns;
  }

  public boolean isShowStoreInfo()
  {
    return this.isShowStoreInfo;
  }

  public boolean isSyncShoppingBag()
  {
    return this.isSyncShoppingBag;
  }

  public void setAlertDetails(ConfigAlert paramConfigAlert)
  {
    this.mAlertConfig = paramConfigAlert;
  }

  public void setCatlogCache(CatalogCache paramCatalogCache)
  {
    this.catlogCache = paramCatalogCache;
  }

  public void setLastUpdatedTime(long paramLong)
  {
    this.mLastUpdatedTime = paramLong;
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.config.model.KillSwitchConfig
 * JD-Core Version:    0.6.2
 */