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

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

The newest version!
package besom.api.akamai


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

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetImagingPolicyVideoResult])
      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.GetImagingPolicyVideoPolicy] = output.map(_.policy)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetImagingPolicyVideoResult]])
      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.GetImagingPolicyVideoPolicy]] = output.map(_.map(_.policy))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy