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

src.index.outputs.EventDestinationTargetDebug.scala Maven / Gradle / Ivy

There is a newer version: 0.0.24-core.0.3
Show newest version
package besom.api.ngrok.outputs


final case class EventDestinationTargetDebug private(
  callbackUrl: scala.Option[String],
  log: scala.Option[Boolean]
)
object EventDestinationTargetDebug :

  given decoder(using besom.types.Context): besom.types.Decoder[EventDestinationTargetDebug] =
    besom.internal.Decoder.derived[EventDestinationTargetDebug]



  given outputOps: {} with
    extension(output: besom.types.Output[EventDestinationTargetDebug])
      def callbackUrl : besom.types.Output[scala.Option[String]] = output.map(_.callbackUrl)
      def log : besom.types.Output[scala.Option[Boolean]] = output.map(_.log)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[EventDestinationTargetDebug]])
      def callbackUrl : besom.types.Output[scala.Option[String]] = output.map(_.flatMap(_.callbackUrl))
      def log : besom.types.Output[scala.Option[Boolean]] = output.map(_.flatMap(_.log))





© 2015 - 2025 Weber Informatics LLC | Privacy Policy