ShippingAddress

data class ShippingAddress(    val countryCode: String,     val city: String,     val firstStreetLine: String,     val secondStreetLine: String,     val state: String = "",     val postCode: String = "")

Constructors

Link copied to clipboard
fun ShippingAddress(    countryCode: String,     city: String,     firstStreetLine: String,     secondStreetLine: String,     state: String = "",     postCode: String = "")

Properties

Link copied to clipboard
val city: String
Link copied to clipboard
val countryCode: String
Link copied to clipboard
val firstStreetLine: String
Link copied to clipboard
val postCode: String
Link copied to clipboard
val secondStreetLine: String
Link copied to clipboard
val state: String