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