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

com.pulumi.azure.databoxedge.kotlin.outputs.OrderContact.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.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