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

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

The newest version!
package besom.api.akamai


final case class GetPropertyRuleFormatsResult private(
  id: String,
  ruleFormats: scala.collection.immutable.List[String]
)
object GetPropertyRuleFormatsResult :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetPropertyRuleFormatsResult])
      def id : besom.types.Output[String] = output.map(_.id)
      def ruleFormats : besom.types.Output[scala.collection.immutable.List[String]] = output.map(_.ruleFormats)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetPropertyRuleFormatsResult]])
      def id : besom.types.Output[scala.Option[String]] = output.map(_.map(_.id))
      def ruleFormats : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.map(_.ruleFormats))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy