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

src.index.outputs.GetDatastreamsStreamsDetailProperty.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai.outputs


final case class GetDatastreamsStreamsDetailProperty private(
  propertyId: Int,
  propertyName: String
)
object GetDatastreamsStreamsDetailProperty :

  given decoder(using besom.types.Context): besom.types.Decoder[GetDatastreamsStreamsDetailProperty] =
    besom.internal.Decoder.derived[GetDatastreamsStreamsDetailProperty]



  given outputOps: {} with
    extension(output: besom.types.Output[GetDatastreamsStreamsDetailProperty])
      def propertyId : besom.types.Output[Int] = output.map(_.propertyId)
      def propertyName : besom.types.Output[String] = output.map(_.propertyName)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetDatastreamsStreamsDetailProperty]])
      def propertyId : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.propertyId))
      def propertyName : besom.types.Output[scala.Option[String]] = output.map(_.map(_.propertyName))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy