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

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

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


final case class GetGtmDomainPropertyStaticRrSet private(
  rdatas: scala.collection.immutable.List[String],
  ttl: Int,
  `type`: String
)
object GetGtmDomainPropertyStaticRrSet :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetGtmDomainPropertyStaticRrSet])
      def rdatas : besom.types.Output[scala.collection.immutable.List[String]] = output.map(_.rdatas)
      def ttl : besom.types.Output[Int] = output.map(_.ttl)
      def `type` : besom.types.Output[String] = output.map(_.`type`)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetGtmDomainPropertyStaticRrSet]])
      def rdatas : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.map(_.rdatas))
      def ttl : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.ttl))
      def `type` : besom.types.Output[scala.Option[String]] = output.map(_.map(_.`type`))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy