src.index.GetIamSupportedLangsResult.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetIamSupportedLangsResult private(
id: String,
languages: scala.collection.immutable.List[String]
)
object GetIamSupportedLangsResult :
given decoder(using besom.types.Context): besom.types.Decoder[GetIamSupportedLangsResult] =
besom.internal.Decoder.derived[GetIamSupportedLangsResult]
given outputOps: {} with
extension(output: besom.types.Output[GetIamSupportedLangsResult])
def id : besom.types.Output[String] = output.map(_.id)
def languages : besom.types.Output[scala.collection.immutable.List[String]] = output.map(_.languages)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetIamSupportedLangsResult]])
def id : besom.types.Output[scala.Option[String]] = output.map(_.map(_.id))
def languages : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.map(_.languages))