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

src.index.inputs.EventDestinationTargetDebugArgs.scala Maven / Gradle / Ivy

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

final case class EventDestinationTargetDebugArgs private(
  callbackUrl: besom.types.Output[scala.Option[String]],
  log: besom.types.Output[scala.Option[Boolean]]
)

object EventDestinationTargetDebugArgs:
  def apply(
    callbackUrl: besom.types.Input.Optional[String] = scala.None,
    log: besom.types.Input.Optional[Boolean] = scala.None
  )(using besom.types.Context): EventDestinationTargetDebugArgs =
    new EventDestinationTargetDebugArgs(
      callbackUrl = callbackUrl.asOptionOutput(isSecret = false),
      log = log.asOptionOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[EventDestinationTargetDebugArgs] =
    besom.internal.Encoder.derived[EventDestinationTargetDebugArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EventDestinationTargetDebugArgs] =
    besom.internal.ArgsEncoder.derived[EventDestinationTargetDebugArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy