AddressArgs

data class AddressArgs(val address1: Output<String>, val address2: Output<String>? = null, val city: Output<String>, val country: Output<String>, val postalCode: Output<String>, val state: Output<String>) : ConvertibleToJava<AddressArgs>

Address information for domain registration.

Constructors

Link copied to clipboard
constructor(address1: Output<String>, address2: Output<String>? = null, city: Output<String>, country: Output<String>, postalCode: Output<String>, state: Output<String>)

Properties

Link copied to clipboard
val address1: Output<String>

First line of an Address.

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

The second line of the Address. Optional.

Link copied to clipboard
val city: Output<String>

The city for the address.

Link copied to clipboard
val country: Output<String>

The country for the address.

Link copied to clipboard
val postalCode: Output<String>

The postal code for the address.

Link copied to clipboard
val state: Output<String>

The state or province for the address.

Functions

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