AddressArgs

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

The shipping address of the customer.

Constructors

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

Properties

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

The address line1.

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

The address line2.

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

The address line3.

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

The city name.

Link copied to clipboard
val country: Output<String>

The country name.

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

The postal code.

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

The state name.

Functions

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