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

src.index.GetEdgeWorkersPropertyRulesResult.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai


final case class GetEdgeWorkersPropertyRulesResult private(
  edgeworkerId: Int,
  id: String,
  json: String
)
object GetEdgeWorkersPropertyRulesResult :

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



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

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy