Package

qiitascala

commands

Permalink

package commands

Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class Command[A] extends Product with Serializable

    Permalink
  2. final case class GetComment(id: String) extends Command[Comment] with Product with Serializable

    Permalink
  3. final case class GetComments(itemId: String, page: Int) extends Command[IList[Comment]] with Product with Serializable

    Permalink
  4. final case class GetFollowees(userId: String, page: Int) extends Command[IList[User]] with Product with Serializable

    Permalink
  5. final case class GetFollowers(userId: String, page: Int) extends Command[IList[User]] with Product with Serializable

    Permalink
  6. final case class GetFollowingTags(userId: String, page: Int) extends Command[IList[Json]] with Product with Serializable

    Permalink
  7. final case class GetItem(itemId: String) extends Command[Item] with Product with Serializable

    Permalink
  8. final case class GetItems(page: Int) extends Command[IList[Item]] with Product with Serializable

    Permalink
  9. final case class GetStockers(itemId: String, page: Int) extends Command[IList[User]] with Product with Serializable

    Permalink
  10. final case class GetTag(name: String) extends Command[Tag] with Product with Serializable

    Permalink
  11. final case class GetTaggedItems(tag: String, page: Int) extends Command[IList[Item]] with Product with Serializable

    Permalink
  12. final case class GetTags(page: Int) extends Command[IList[Tag]] with Product with Serializable

    Permalink
  13. final case class GetUser(userId: String) extends Command[User] with Product with Serializable

    Permalink
  14. final case class GetUserItems(userId: String, page: Int) extends Command[IList[Item]] with Product with Serializable

    Permalink
  15. final case class GetUserStocks(userId: String, page: Int) extends Command[IList[Item]] with Product with Serializable

    Permalink
  16. final case class GetUsers(page: Int) extends Command[IList[User]] with Product with Serializable

    Permalink

Value Members

  1. object Command extends Serializable

    Permalink
  2. object GetAuthenticatedUser extends Command[User] with Product with Serializable

    Permalink

Ungrouped