package com.ikea.shared.user.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class LoyaltyCard
{

  @Expose
  @SerializedName("CardCreatorCode")
  private String cardCreatorCode;

  @Expose
  @SerializedName("CardImageUrl")
  private String cardImageUrl;

  @Expose
  @SerializedName("CardIssuer")
  private String cardIssuer;

  @Expose
  @SerializedName("CardNo")
  private String cardNo;

  @Expose
  @SerializedName("CardType")
  private String cardType;

  public String getCardCreatorCode()
  {
    return this.cardCreatorCode;
  }

  public String getCardImageUrl()
  {
    return this.cardImageUrl;
  }

  public String getCardIssuer()
  {
    return this.cardIssuer;
  }

  public String getCardNo()
  {
    return this.cardNo;
  }

  public String getCardType()
  {
    return this.cardType;
  }
}

/* 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.LoyaltyCard
 * JD-Core Version:    0.6.2
 */