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

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

The newest version!
package besom.api.akamai

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

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

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy