ShippingAddress

data class ShippingAddress(    val city: String,     val state: String,     val postCode: String,     val country: String)

Constructors

Link copied to clipboard
fun ShippingAddress(    city: String,     state: String,     postCode: String,     country: String)

Properties

Link copied to clipboard
val city: String
Link copied to clipboard
val country: String
Link copied to clipboard
val postCode: String
Link copied to clipboard
val state: String