ShippingAddressArgs

data class ShippingAddressArgs(val addressType: Output<Either<String, AddressType>>? = null, val city: Output<String>? = null, val companyName: Output<String>? = null, val country: Output<String>, val postalCode: Output<String>? = null, val skipAddressValidation: Output<Boolean>? = null, val stateOrProvince: Output<String>? = null, val streetAddress1: Output<String>, val streetAddress2: Output<String>? = null, val streetAddress3: Output<String>? = null, val taxIdentificationNumber: Output<String>? = null, val zipExtendedCode: Output<String>? = null) : ConvertibleToJava<ShippingAddressArgs>

Shipping address where customer wishes to receive the device.

Constructors

Link copied to clipboard
constructor(addressType: Output<Either<String, AddressType>>? = null, city: Output<String>? = null, companyName: Output<String>? = null, country: Output<String>, postalCode: Output<String>? = null, skipAddressValidation: Output<Boolean>? = null, stateOrProvince: Output<String>? = null, streetAddress1: Output<String>, streetAddress2: Output<String>? = null, streetAddress3: Output<String>? = null, taxIdentificationNumber: Output<String>? = null, zipExtendedCode: Output<String>? = null)

Properties

Link copied to clipboard
val addressType: Output<Either<String, AddressType>>? = null

Type of address.

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

Name of the City.

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

Name of the company.

Link copied to clipboard
val country: Output<String>

Name of the Country.

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

Postal code.

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

Flag to indicate if customer has chosen to skip default address validation

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

Name of the State or Province.

Link copied to clipboard
val streetAddress1: Output<String>

Street Address line 1.

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

Street Address line 2.

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

Street Address line 3.

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

Tax Identification Number

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

Extended Zip Code.

Functions

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