![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.databoxedge.kotlin.outputs.OrderContact.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.databoxedge.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property companyName The name of the company. Changing this forces a new Databox Edge Order to be created.
* @property emails A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
* @property name The contact person name. Changing this forces a new Databox Edge Order to be created.
* @property phoneNumber The phone number. Changing this forces a new Databox Edge Order to be created.
*/
public data class OrderContact(
public val companyName: String,
public val emails: List,
public val name: String,
public val phoneNumber: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.databoxedge.outputs.OrderContact): OrderContact =
OrderContact(
companyName = javaType.companyName(),
emails = javaType.emails().map({ args0 -> args0 }),
name = javaType.name(),
phoneNumber = javaType.phoneNumber(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy