src.index.outputs.GetCloudwrapperPropertiesProperty.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class GetCloudwrapperPropertiesProperty private(
contractId: String,
groupId: Int,
propertyId: Int,
propertyName: String,
`type`: String
)
object GetCloudwrapperPropertiesProperty :
given decoder(using besom.types.Context): besom.types.Decoder[GetCloudwrapperPropertiesProperty] =
besom.internal.Decoder.derived[GetCloudwrapperPropertiesProperty]
given outputOps: {} with
extension(output: besom.types.Output[GetCloudwrapperPropertiesProperty])
def contractId : besom.types.Output[String] = output.map(_.contractId)
def groupId : besom.types.Output[Int] = output.map(_.groupId)
def propertyId : besom.types.Output[Int] = output.map(_.propertyId)
def propertyName : besom.types.Output[String] = output.map(_.propertyName)
def `type` : besom.types.Output[String] = output.map(_.`type`)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetCloudwrapperPropertiesProperty]])
def contractId : besom.types.Output[scala.Option[String]] = output.map(_.map(_.contractId))
def groupId : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.groupId))
def propertyId : besom.types.Output[scala.Option[Int]] = output.map(_.map(_.propertyId))
def propertyName : besom.types.Output[scala.Option[String]] = output.map(_.map(_.propertyName))
def `type` : besom.types.Output[scala.Option[String]] = output.map(_.map(_.`type`))