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

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

The newest version!
package besom.api.akamai


final case class GetImagingPolicyImageResult private(
  id: String,
  json: String,
  policy: besom.api.akamai.outputs.GetImagingPolicyImagePolicy
)
object GetImagingPolicyImageResult :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetImagingPolicyImageResult])
      def id : besom.types.Output[String] = output.map(_.id)
      def json : besom.types.Output[String] = output.map(_.json)
      def policy : besom.types.Output[besom.api.akamai.outputs.GetImagingPolicyImagePolicy] = output.map(_.policy)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetImagingPolicyImageResult]])
      def id : besom.types.Output[scala.Option[String]] = output.map(_.map(_.id))
      def json : besom.types.Output[scala.Option[String]] = output.map(_.map(_.json))
      def policy : besom.types.Output[scala.Option[besom.api.akamai.outputs.GetImagingPolicyImagePolicy]] = output.map(_.map(_.policy))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy