All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hackernews4s.v0.internal.RawChangedItemsAndProfiles.scala Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package hackernews4s.v0.internal

import hackernews4s.v0._

private[hackernews4s] case class RawChangedItemsAndProfiles(
    items: Seq[Long],
    profiles: Seq[String]) {

  def toChangedItemsAndProfiles: ChangedItemsAndProfiles = new ChangedItemsAndProfiles(
    itemIds = items.map(ItemId),
    userIds = profiles.map(UserId)
  )

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy