
com.pulumi.azurenative.contoso.kotlin.outputs.EmployeePropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.contoso.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* Employee properties
* @property age Age of employee
* @property city City of employee
* @property profile Profile of employee
* @property provisioningState The status of the last operation.
*/
public data class EmployeePropertiesResponse(
public val age: Int? = null,
public val city: String? = null,
public val profile: String? = null,
public val provisioningState: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.contoso.outputs.EmployeePropertiesResponse): EmployeePropertiesResponse = EmployeePropertiesResponse(
age = javaType.age().map({ args0 -> args0 }).orElse(null),
city = javaType.city().map({ args0 -> args0 }).orElse(null),
profile = javaType.profile().map({ args0 -> args0 }).orElse(null),
provisioningState = javaType.provisioningState(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy