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

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

The newest version!
package besom.api.akamai

final case class BotmanBotAnalyticsCookieArgs private(
  botAnalyticsCookie: besom.types.Output[String],
  configId: besom.types.Output[Int]
)

object BotmanBotAnalyticsCookieArgs:
  def apply(
    botAnalyticsCookie: besom.types.Input[String],
    configId: besom.types.Input[Int]
  )(using besom.types.Context): BotmanBotAnalyticsCookieArgs =
    new BotmanBotAnalyticsCookieArgs(
      botAnalyticsCookie = botAnalyticsCookie.asOutput(isSecret = false),
      configId = configId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy