UserAddressesArgs

data class UserAddressesArgs(val country: Output<String>? = null, val formatted: Output<String>? = null, val locality: Output<String>? = null, val postalCode: Output<String>? = null, val primary: Output<Boolean>? = null, val region: Output<String>? = null, val streetAddress: Output<String>? = null, val type: Output<String>? = null) : ConvertibleToJava<UserAddressesArgs>

Constructors

Link copied to clipboard
constructor(country: Output<String>? = null, formatted: Output<String>? = null, locality: Output<String>? = null, postalCode: Output<String>? = null, primary: Output<Boolean>? = null, region: Output<String>? = null, streetAddress: Output<String>? = null, type: Output<String>? = null)

Properties

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

The country that this address is in.

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

The name that is typically displayed when the address is shown for display.

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

The address locality.

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

The postal code of the address.

Link copied to clipboard
val primary: Output<Boolean>? = null

When true, this is the primary address associated with the user.

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

The region of the address.

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

The street of the address.

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

The type of address.

Functions

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