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

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

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


final case class GetPropertyRulesBuilderRulesV20230920Variable private(
  description: String,
  hidden: Boolean,
  name: String,
  sensitive: Boolean,
  value: String
)
object GetPropertyRulesBuilderRulesV20230920Variable :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetPropertyRulesBuilderRulesV20230920Variable])
      def description : besom.types.Output[String] = output.map(_.description)
      def hidden : besom.types.Output[Boolean] = output.map(_.hidden)
      def name : besom.types.Output[String] = output.map(_.name)
      def sensitive : besom.types.Output[Boolean] = output.map(_.sensitive)
      def value : besom.types.Output[String] = output.map(_.value)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetPropertyRulesBuilderRulesV20230920Variable]])
      def description : besom.types.Output[scala.Option[String]] = output.map(_.map(_.description))
      def hidden : besom.types.Output[scala.Option[Boolean]] = output.map(_.map(_.hidden))
      def name : besom.types.Output[scala.Option[String]] = output.map(_.map(_.name))
      def sensitive : besom.types.Output[scala.Option[Boolean]] = output.map(_.map(_.sensitive))
      def value : besom.types.Output[scala.Option[String]] = output.map(_.map(_.value))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy