Account Update Information Request
data class AccountUpdateInformationRequest(@Json(name = "consumer_information" ) val consumerInformation: ConsumerInformationRequest? = null, @Json(name = "business_information" ) val businessInformation: BusinessInformationRequest? = null, @Json(name = "stakeholder_information" ) val stakeholderInformation: StakeholderInformationRequest? = null, @Json(name = "cardholder_information" ) val cardholderInformation: CardholderInformationRequest? = null)
Account information data to be updated according to account type AccountTypeModel.
Constructors
Link copied to clipboard
constructor(@Json(name = "consumer_information" ) consumerInformation: ConsumerInformationRequest? = null, @Json(name = "business_information" ) businessInformation: BusinessInformationRequest? = null, @Json(name = "stakeholder_information" ) stakeholderInformation: StakeholderInformationRequest? = null, @Json(name = "cardholder_information" ) cardholderInformation: CardholderInformationRequest? = null)
Properties
Link copied to clipboard
Business information of type AccountTypeModel.BUSINESS.
Link copied to clipboard
Cardholder information of type AccountTypeModel.CARDHOLDER.
Link copied to clipboard
Consumer information of type AccountTypeModel.CONSUMER.
Link copied to clipboard
Stakeholder information of type AccountTypeModel.STAKEHOLDER.