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

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

The newest version!
package besom.api.akamai


final case class GetPropertyIncludeParentsResult private(
  contractId: String,
  groupId: String,
  id: String,
  includeId: String,
  parents: scala.collection.immutable.List[besom.api.akamai.outputs.GetPropertyIncludeParentsParent]
)
object GetPropertyIncludeParentsResult :

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



  given outputOps: {} with
    extension(output: besom.types.Output[GetPropertyIncludeParentsResult])
      def contractId : besom.types.Output[String] = output.map(_.contractId)
      def groupId : besom.types.Output[String] = output.map(_.groupId)
      def id : besom.types.Output[String] = output.map(_.id)
      def includeId : besom.types.Output[String] = output.map(_.includeId)
      def parents : besom.types.Output[scala.collection.immutable.List[besom.api.akamai.outputs.GetPropertyIncludeParentsParent]] = output.map(_.parents)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetPropertyIncludeParentsResult]])
      def contractId : besom.types.Output[scala.Option[String]] = output.map(_.map(_.contractId))
      def groupId : besom.types.Output[scala.Option[String]] = output.map(_.map(_.groupId))
      def id : besom.types.Output[scala.Option[String]] = output.map(_.map(_.id))
      def includeId : besom.types.Output[scala.Option[String]] = output.map(_.map(_.includeId))
      def parents : besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.outputs.GetPropertyIncludeParentsParent]]] = output.map(_.map(_.parents))





© 2015 - 2024 Weber Informatics LLC | Privacy Policy