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