ContactArgs

data class ContactArgs(val email: Output<String>, val faxNumber: Output<String>? = null, val phoneNumber: Output<String>, val postalAddress: Output<PostalAddressArgs>) : ConvertibleToJava<ContactArgs>

Details required for a contact associated with a Registration.

Constructors

Link copied to clipboard
fun ContactArgs(email: Output<String>, faxNumber: Output<String>? = null, phoneNumber: Output<String>, postalAddress: Output<PostalAddressArgs>)

Functions

Link copied to clipboard
open override fun toJava(): ContactArgs

Properties

Link copied to clipboard
val email: Output<String>

Email address of the contact.

Link copied to clipboard
val faxNumber: Output<String>? = null

Fax number of the contact in international format. For example, "+1-800-555-0123".

Link copied to clipboard
val phoneNumber: Output<String>

Phone number of the contact in international format. For example, "+1-800-555-0123".

Link copied to clipboard

Postal address of the contact.