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

com.permutive.pubsub.consumer.http.PubsubMessage.scala Maven / Gradle / Ivy

There is a newer version: 0.22.2
Show newest version
package com.permutive.pubsub.consumer.http

import com.github.plokhotnyuk.jsoniter_scala.core.JsonValueCodec
import com.github.plokhotnyuk.jsoniter_scala.macros.{CodecMakerConfig, JsonCodecMaker}

case class PubsubMessage(
  data: String,
  attributes: Map[String, String],
  messageId: String,
  publishTime: String
)

object PubsubMessage {
  implicit final val Codec: JsonValueCodec[PubsubMessage] =
    JsonCodecMaker.make[PubsubMessage](CodecMakerConfig)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy