AssetAddressResponse

data class AssetAddressResponse(val lines: List<String>? = null, val countryCode: String? = null, val city: String? = null, val zipcode: String? = null)

An object containing the separate components applicable to this address.

Parameters

lines

An Array for lines of an Asset Address

countryCode

An ISO_3166-1 Country Code where the Asset is located (see https://en.wikipedia.org/wiki/ISO_3166-1 for full list)

city

A City where belongs an Asset

zipcode

An Zipcode / Postal code of an Asset Address

Constructors

Link copied to clipboard
constructor(lines: List<String>? = null, countryCode: String? = null, city: String? = null, zipcode: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "city")
val city: String? = null
Link copied to clipboard
@SerializedName(value = "country_code")
val countryCode: String? = null
Link copied to clipboard
@SerializedName(value = "lines")
val lines: List<String>? = null
Link copied to clipboard
@SerializedName(value = "zipcode")
val zipcode: String? = null