hackernews4s

v0

package v0

Visibility
  1. Public
  2. All

Type Members

  1. trait HackerNews extends Logging

  2. case class HackerNewsAPIException(status: Int, message: String) extends Exception with Product with Serializable

  3. case class Item(id: ItemId, deleted: Boolean, itemType: ItemType, by: UserId, createdAt: DateTime, text: String, dead: Boolean, parent: Option[ItemId], commentIds: Seq[ItemId], url: Option[String], score: Int, title: Option[String], parts: Seq[String]) extends Product with Serializable

  4. case class ItemId(id: Long) extends Product with Serializable

  5. sealed trait ItemType extends AnyRef

  6. case class User(id: UserId, about: Option[String], delay: Long, createdAt: DateTime, karma: Long, submitted: Seq[ItemId]) extends Product with Serializable

  7. case class UserId(id: String) extends Product with Serializable

Value Members

  1. object Comment extends ItemType with Product with Serializable

  2. object HackerNews extends HackerNews

  3. object ItemType

  4. object Job extends ItemType with Product with Serializable

  5. object Poll extends ItemType with Product with Serializable

  6. object Pollopt extends ItemType with Product with Serializable

  7. object Story extends ItemType with Product with Serializable

  8. object Unknown extends ItemType with Product with Serializable

  9. package internal

Ungrouped