src.index.BotmanRecategorizedAkamaiDefinedBotArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class BotmanRecategorizedAkamaiDefinedBotArgs private(
botId: besom.types.Output[String],
categoryId: besom.types.Output[String],
configId: besom.types.Output[Int]
)
object BotmanRecategorizedAkamaiDefinedBotArgs:
def apply(
botId: besom.types.Input[String],
categoryId: besom.types.Input[String],
configId: besom.types.Input[Int]
)(using besom.types.Context): BotmanRecategorizedAkamaiDefinedBotArgs =
new BotmanRecategorizedAkamaiDefinedBotArgs(
botId = botId.asOutput(isSecret = false),
categoryId = categoryId.asOutput(isSecret = false),
configId = configId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[BotmanRecategorizedAkamaiDefinedBotArgs] =
besom.internal.Encoder.derived[BotmanRecategorizedAkamaiDefinedBotArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[BotmanRecategorizedAkamaiDefinedBotArgs] =
besom.internal.ArgsEncoder.derived[BotmanRecategorizedAkamaiDefinedBotArgs]