Package

scalabot

slack

Permalink

package slack

Visibility
  1. Public
  2. All

Type Members

  1. trait BaseChannel extends AnyRef

    Permalink

    Created by Nikolay.Smelik on 7/8/2016.

  2. case class Channel(id: String, creator: String, name: String, topic: Option[ChannelInfo], unread_count: Option[Int], members: Option[List[String]]) extends BaseChannel with Product with Serializable

    Permalink
  3. case class ChannelInfo(value: String, creator: String, last_set: Long) extends Product with Serializable

    Permalink
  4. case class DirectChannel(id: String, userId: String) extends Product with Serializable

    Permalink
  5. case class Im(id: String, user: String, latest: Option[Update]) extends BaseChannel with Product with Serializable

    Permalink
  6. case class Profile(first_name: String, last_name: String, real_name: String, email: String, skype: String, phone: String) extends Product with Serializable

    Permalink
  7. case class Response(id: Int, type: String, channel: String, text: String) extends Product with Serializable

    Permalink
  8. case class Self(id: String, name: String) extends Product with Serializable

    Permalink
  9. class SlackSource extends Source

    Permalink

    Created by Nikolay.Smelik on 7/12/2016.

  10. case class StartResponse(ok: Boolean, url: String, self: Self, team: Team, users: Seq[User], channels: Seq[Channel], ims: Seq[Im], bots: Seq[User]) extends Product with Serializable

    Permalink
  11. case class Team(id: String, name: String, email_domain: String, domain: String) extends Product with Serializable

    Permalink
  12. case class Update(type: String, url: Option[String] = None, channel: Option[String] = None, user: Option[String] = None, text: Option[String] = None, team: Option[String] = None) extends SourceMessage with Product with Serializable

    Permalink
  13. case class User(id: String, name: String, deleted: Boolean, is_admin: Option[Boolean], is_owner: Option[Boolean], is_primary_owner: Option[Boolean], is_restricted: Option[Boolean], is_ultra_restricted: Option[Boolean], has_files: Option[Boolean], is_bot: Option[Boolean], profile: Option[Profile]) extends Product with Serializable

    Permalink

Ungrouped