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

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

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


final case class GetGtmAsmapLink private(
  href: String,
  rel: String
)
object GetGtmAsmapLink :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetGtmAsmapLink])
      def href : besom.types.Output[String] = output.map(_.href)
      def rel : besom.types.Output[String] = output.map(_.rel)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetGtmAsmapLink]])
      def href : besom.types.Output[scala.Option[String]] = output.map(_.map(_.href))
      def rel : besom.types.Output[scala.Option[String]] = output.map(_.map(_.rel))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy