package com.ikea.shared.config.model;

import com.google.gson.annotations.SerializedName;
import java.io.Serializable;

public class UrlElement
  implements Serializable
{
  private static final long serialVersionUID = -9199509155168604617L;

  @SerializedName("type")
  private String mTpe;

  @SerializedName("value")
  private String mValue;

  public String getTpe()
  {
    return this.mTpe;
  }

  public String getValue()
  {
    return this.mValue;
  }

  public void setValue(String paramString)
  {
    this.mValue = paramString;
  }

  public String toString()
  {
    return "UrlElement [mTpe=" + this.mTpe + ", mValue=" + this.mValue + "]";
  }
}

/* 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.UrlElement
 * JD-Core Version:    0.6.2
 */