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