Contact Args
data class ContactArgs(val addressMailing: Output<AddressArgs>? = null, val email: Output<String>, val fax: Output<String>? = null, val jobTitle: Output<String>? = null, val nameFirst: Output<String>, val nameLast: Output<String>, val nameMiddle: Output<String>? = null, val organization: Output<String>? = null, val phone: Output<String>) : ConvertibleToJava<ContactArgs>
Contact information for domain registration. If 'Domain Privacy' option is not selected then the contact information is made publicly available through the Whois directories as per ICANN requirements.
Constructors
Link copied to clipboard
fun ContactArgs(addressMailing: Output<AddressArgs>? = null, email: Output<String>, fax: Output<String>? = null, jobTitle: Output<String>? = null, nameFirst: Output<String>, nameLast: Output<String>, nameMiddle: Output<String>? = null, organization: Output<String>? = null, phone: Output<String>)