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

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]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy