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

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

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


final case class GetPropertyIncludesParentProperty private(
  id: String,
  version: Int
)
object GetPropertyIncludesParentProperty :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetPropertyIncludesParentProperty])
      def id : besom.types.Output[String] = output.map(_.id)
      def version : besom.types.Output[Int] = output.map(_.version)

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy