NoahBankAddress

data class NoahBankAddress(val street: String? = null, val street2: String? = null, val city: String? = null, val postCode: String? = null, val state: String? = null, val country: String? = null)

Bank address shape returned by Noah. Mirrors connect-api's NoahBankAddress after the BFF's pascal-to-camel formatter (Street/Street2/City/PostCode/State/Country).

Constructors

Link copied to clipboard
constructor(street: String? = null, street2: String? = null, city: String? = null, postCode: String? = null, state: String? = null, country: String? = null)

Properties

Link copied to clipboard
val city: String? = null
Link copied to clipboard
val country: String? = null
Link copied to clipboard
val postCode: String? = null
Link copied to clipboard
val state: String? = null
Link copied to clipboard
val street: String? = null
Link copied to clipboard
val street2: String? = null