src.index.outputs.GtmPropertyStaticRrSet.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class GtmPropertyStaticRrSet private(
rdatas: scala.Option[scala.collection.immutable.List[String]],
ttl: scala.Option[Int],
`type`: scala.Option[String]
)
object GtmPropertyStaticRrSet :
given decoder(using besom.types.Context): besom.types.Decoder[GtmPropertyStaticRrSet] =
besom.internal.Decoder.derived[GtmPropertyStaticRrSet]
given outputOps: {} with
extension(output: besom.types.Output[GtmPropertyStaticRrSet])
def rdatas : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.rdatas)
def ttl : besom.types.Output[scala.Option[Int]] = output.map(_.ttl)
def `type` : besom.types.Output[scala.Option[String]] = output.map(_.`type`)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GtmPropertyStaticRrSet]])
def rdatas : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.flatMap(_.rdatas))
def ttl : besom.types.Output[scala.Option[Int]] = output.map(_.flatMap(_.ttl))
def `type` : besom.types.Output[scala.Option[String]] = output.map(_.flatMap(_.`type`))