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

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

The newest version!
package besom.api.akamai

final case class BotmanCustomClientSequenceArgs private(
  configId: besom.types.Output[Int],
  customClientIds: besom.types.Output[scala.collection.immutable.List[String]]
)

object BotmanCustomClientSequenceArgs:
  def apply(
    configId: besom.types.Input[Int],
    customClientIds: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]]
  )(using besom.types.Context): BotmanCustomClientSequenceArgs =
    new BotmanCustomClientSequenceArgs(
      configId = configId.asOutput(isSecret = false),
      customClientIds = customClientIds.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy