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

src.index.BotmanCustomClientArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class BotmanCustomClientArgs private(
  configId: besom.types.Output[Int],
  customClient: besom.types.Output[String]
)

object BotmanCustomClientArgs:
  def apply(
    configId: besom.types.Input[Int],
    customClient: besom.types.Input[String]
  )(using besom.types.Context): BotmanCustomClientArgs =
    new BotmanCustomClientArgs(
      configId = configId.asOutput(isSecret = false),
      customClient = customClient.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy