src.index.GetPropertyIncludeResult.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetPropertyIncludeResult private(
contractId: String,
groupId: String,
id: String,
includeId: String,
latestVersion: Int,
name: String,
productionVersion: Int,
stagingVersion: Int,
`type`: String
)
object GetPropertyIncludeResult :
given decoder(using besom.types.Context): besom.types.Decoder[GetPropertyIncludeResult] =
besom.internal.Decoder.derived[GetPropertyIncludeResult]
given outputOps: {} with
extension(output: besom.types.Output[GetPropertyIncludeResult])
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 latestVersion : besom.types.Output[Int] = output.map(_.latestVersion)
def name : besom.types.Output[String] = output.map(_.name)
def productionVersion : besom.types.Output[Int] = output.map(_.productionVersion)
def stagingVersion : besom.types.Output[Int] = output.map(_.stagingVersion)
def `type` : besom.types.Output[String] = output.map(_.`type`)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetPropertyIncludeResult]])
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 latestVersion : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.latestVersion))
def name : besom.types.Output[scala.Option[String]] = output.map(_.map(_.name))
def productionVersion : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.productionVersion))
def stagingVersion : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.stagingVersion))
def `type` : besom.types.Output[scala.Option[String]] = output.map(_.map(_.`type`))