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

com.pulumi.azure.databoxedge.kotlin.outputs.OrderShipmentHistory.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.databoxedge.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map

/**
 *
 * @property additionalDetails Dictionary to hold generic information which is not stored by the already existing properties.
 * @property comments Comments related to this status change.
 * @property lastUpdate Time of status update.
 */
public data class OrderShipmentHistory(
    public val additionalDetails: Map? = null,
    public val comments: String? = null,
    public val lastUpdate: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.databoxedge.outputs.OrderShipmentHistory): OrderShipmentHistory = OrderShipmentHistory(
            additionalDetails = javaType.additionalDetails().map({ args0 ->
                args0.key.to(args0.value)
            }).toMap(),
            comments = javaType.comments().map({ args0 -> args0 }).orElse(null),
            lastUpdate = javaType.lastUpdate().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy