Shipping Address Args
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 stateOrProvince: Output<String>? = null, val streetAddress1: Output<String>, val streetAddress2: Output<String>? = null, val streetAddress3: 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, stateOrProvince: Output<String>? = null, streetAddress1: Output<String>, streetAddress2: Output<String>? = null, streetAddress3: Output<String>? = null, zipExtendedCode: Output<String>? = null)
Properties
Link copied to clipboard
Type of address.
Link copied to clipboard
Name of the company.
Link copied to clipboard
Postal code.
Link copied to clipboard
Name of the State or Province.
Link copied to clipboard
Street Address line 1.
Link copied to clipboard
Street Address line 2.
Link copied to clipboard
Street Address line 3.
Link copied to clipboard
Extended Zip Code.