package com.ikea.shared.campaign.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;

public class Campaign
  implements Serializable
{
  private static final long serialVersionUID = 1L;

  @Expose
  @SerializedName("CampaignType")
  private String CampaignType;

  @Expose
  @SerializedName("AttributeList")
  private AttributeList attributeList;

  @Expose
  @SerializedName("BodyTextList")
  private BodyTextList bodyTextList;

  @Expose
  @SerializedName("CampaignId")
  private String campaignId;

  @Expose
  @SerializedName("ImageUrl")
  private String imageUrl;

  @Expose
  @SerializedName("LinkList")
  private LinkList linkList;

  @Expose
  @SerializedName("MainHeadline")
  private String mainHeadline;

  @Expose
  @SerializedName("ShortBodyText")
  private String shortBodyText;

  @Expose
  @SerializedName("TargetList")
  private TargetList targetList;

  public AttributeList getAttributeList()
  {
    return this.attributeList;
  }

  public BodyTextList getBodyTextList()
  {
    return this.bodyTextList;
  }

  public String getCampaignId()
  {
    return this.campaignId;
  }

  public String getCampaignType()
  {
    return this.CampaignType;
  }

  public String getImageUrl()
  {
    String str = "";
    if (this.imageUrl != null)
    {
      if (this.imageUrl.startsWith("http:"))
        str = this.imageUrl;
    }
    else
      return str;
    return "http://www.ikea.com" + this.imageUrl;
  }

  public LinkList getLinkList()
  {
    return this.linkList;
  }

  public String getMainHeadline()
  {
    return this.mainHeadline;
  }

  public String getShortBodyText()
  {
    return this.shortBodyText;
  }

  public TargetList getTargetList()
  {
    return this.targetList;
  }

  public String toString()
  {
    return "Campaign [campaignId=" + this.campaignId + ", shortBodyText=" + this.shortBodyText + ", bodyTextList=" + this.bodyTextList + ", attributeList=" + this.attributeList + ", mainHeadline=" + this.mainHeadline + ", imageUrl=" + this.imageUrl + ", targetList=" + this.targetList + ", linkList=" + this.linkList + ", CampaignType=" + this.CampaignType + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.campaign.model.Campaign
 * JD-Core Version:    0.6.2
 */