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

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

The newest version!
package besom.api.akamai

final case class GetDatastreamActivationHistoryArgs private(
  streamId: besom.types.Output[Int]
)

object GetDatastreamActivationHistoryArgs:
  def apply(
    streamId: besom.types.Input[Int]
  )(using besom.types.Context): GetDatastreamActivationHistoryArgs =
    new GetDatastreamActivationHistoryArgs(
      streamId = streamId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy