AddressDto

data class AddressDto(var street: String? = null, var houseNumber: String? = null, var zip: String? = null, var city: String? = null, var state: String? = null, var countryISOCode: String? = null)

Address data.

Parameters

street

Address street

houseNumber

Address house number

zip

Zip code of the city

city

Name of the city

state

State/Canton

countryISOCode

ISO-3166 two-character country code of the bank

Constructors

Link copied to clipboard
constructor(street: String? = null, houseNumber: String? = null, zip: String? = null, city: String? = null, state: String? = null, countryISOCode: String? = null)

Properties

Link copied to clipboard
var city: String?
Link copied to clipboard
@get:Pattern(regexp = "^[a-zA-Z]{2}$")
var countryISOCode: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var zip: String?