package codec
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- sealed trait APIEntry extends AnyRef
- case class APIResult [A](count: Int, next: Option[Uri], previous: Option[Uri], results: List[A]) extends Product with Serializable
- case class CalendarEntry (date: Instant, stage: Long, is_live: Boolean, streams: List[LiveStream], matches: List[CalendarMatch]) extends Product with Serializable
- case class CalendarMatch (datetime: Instant, name: String, format: String, left_team: Long, right_team: Long) extends Product with Serializable
- case class Draft (team: Long, is_winner: Boolean, bans: List[Long], picks: List[Pick]) extends Product with Serializable
- case class HeroEntry (id: Long, name: String, role: Long, url: Uri, portrait: HeroPortrait) extends APIEntry with Product with Serializable
- case class HeroPortrait (small: Uri, medium: Uri) extends Product with Serializable
- case class LiveStream (country: String, caster: String, url: Uri, viewers: Int) extends Product with Serializable
- case class MapEntry (id: Long, name: String, url: Uri) extends APIEntry with Product with Serializable
- case class MatchEntry (id: Long, date: Instant, patch: Long, tournament: Long, stage: Long, round: String, series: Long, game: Int, map: Long, url: Uri, drafts: List[Draft]) extends APIEntry with Product with Serializable
- case class PatchEntry (id: Long, name: String, from_date: LocalDate, to_date: LocalDate) extends APIEntry with Product with Serializable
- case class Pick (hero: Long, player: Long) extends Product with Serializable
- case class PlayerEntry (id: Long, team: Option[Long], region: Long, nickname: String, realname: String, country: String, role: Long, url: Uri, photo: PlayerPhoto) extends APIEntry with Product with Serializable
- case class PlayerPhoto (small: Uri, big: Uri, medium: Uri) extends Product with Serializable
- case class RegionEntry (id: Long, name: String) extends APIEntry with Product with Serializable
- case class TeamEntry (id: Long, name: String, region: Long, url: Uri, logo: TeamLogo) extends APIEntry with Product with Serializable
- case class TeamLogo (small: Uri, medium: Uri, large: Uri) extends Product with Serializable
- case class TournamentEntry (id: Long, name: String, start_date: LocalDate, end_date: LocalDate, region: Option[Long], url: Uri, stages: List[TournamentStage]) extends APIEntry with Product with Serializable
- case class TournamentStage (id: Long, name: String) extends Product with Serializable
Value Members
- object CirceSupport
- object Decoders