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

src.runtimeconfig.v1beta1.GetConfigResult.scala Maven / Gradle / Ivy

package besom.api.googlenative.runtimeconfig.v1beta1


final case class GetConfigResult private(
  description: String,
  name: String
)
object GetConfigResult :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetConfigResult])
      def description : besom.types.Output[String] = output.map(_.description)
      def name : besom.types.Output[String] = output.map(_.name)

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy