Account Information Model
data class AccountInformationModel(@Json(name = "consumer_information" ) val consumerInformation: ConsumerInformationDetailsModel?, @Json(name = "business_information" ) val businessInformation: BusinessInformationDetailsModel?, @Json(name = "stakeholders" ) val stakeholders: List<StakeholderDetailsModel>?, @Json(name = "business_account_uuid" ) val businessAccountUuid: String?, @Json(name = "stakeholder_information" ) val stakeholderInformation: StakeholderInformationDetailsModel?, @Json(name = "parent_account_uuid" ) val parentAccountUuid: String?, @Json(name = "cardholder_information" ) val cardholderInformation: CardholderInformationDetailsModel?)
User account information according to account type AccountTypeModel.
Constructors
Link copied to clipboard
constructor(@Json(name = "consumer_information" ) consumerInformation: ConsumerInformationDetailsModel?, @Json(name = "business_information" ) businessInformation: BusinessInformationDetailsModel?, @Json(name = "stakeholders" ) stakeholders: List<StakeholderDetailsModel>?, @Json(name = "business_account_uuid" ) businessAccountUuid: String?, @Json(name = "stakeholder_information" ) stakeholderInformation: StakeholderInformationDetailsModel?, @Json(name = "parent_account_uuid" ) parentAccountUuid: String?, @Json(name = "cardholder_information" ) cardholderInformation: CardholderInformationDetailsModel?)
Properties
Link copied to clipboard
The uuid of the Business account to which this Stakeholder belongs.
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
The uuid of the account to which this Cardholder belongs.
Link copied to clipboard
Stakeholder information of type AccountTypeModel.STAKEHOLDER.
Link copied to clipboard
The list of associated stakeholders of a business account.