ShippingAddress

data class ShippingAddress(val countryCode: String, val state: String, val city: String, val streetLine1: String, val streetLine2: String, val postCode: String)(source)

ShippingAddress

This object represents a shipping address.

Author

ForteScarlet

Constructors

Link copied to clipboard
constructor(countryCode: String, state: String, city: String, streetLine1: String, streetLine2: String, postCode: String)

Properties

Link copied to clipboard

City

Link copied to clipboard
@SerialName(value = "country_code")
val countryCode: String

Two-letter ISO 3166-1 alpha-2 country code

Link copied to clipboard
@SerialName(value = "post_code")
val postCode: String

Address post code

Link copied to clipboard

State, if applicable

Link copied to clipboard
@SerialName(value = "street_line1")
val streetLine1: String

First line for the address

Link copied to clipboard
@SerialName(value = "street_line2")
val streetLine2: String

Second line for the address