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

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

The newest version!
package besom.api.akamai


final case class GetEdgeWorkersResourceTierResult private(
  contractId: String,
  id: String,
  resourceTierId: Int,
  resourceTierName: String
)
object GetEdgeWorkersResourceTierResult :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetEdgeWorkersResourceTierResult])
      def contractId : besom.types.Output[String] = output.map(_.contractId)
      def id : besom.types.Output[String] = output.map(_.id)
      def resourceTierId : besom.types.Output[Int] = output.map(_.resourceTierId)
      def resourceTierName : besom.types.Output[String] = output.map(_.resourceTierName)

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy