AccountInformationModel

@Serializable
data class AccountInformationModel(val consumerInformation: ConsumerInformationDetailsModel?, val businessInformation: BusinessInformationDetailsModel?, val stakeholders: List<StakeholderDetailsModel>?, val businessAccountUuid: String?, val stakeholderInformation: StakeholderInformationDetailsModel?, val parentAccountUuid: String?, val cardholderInformation: CardholderInformationDetailsModel?)

User account information according to account type AccountTypeModel.

Constructors

Link copied to clipboard
constructor(consumerInformation: ConsumerInformationDetailsModel?, businessInformation: BusinessInformationDetailsModel?, stakeholders: List<StakeholderDetailsModel>?, businessAccountUuid: String?, stakeholderInformation: StakeholderInformationDetailsModel?, parentAccountUuid: String?, cardholderInformation: CardholderInformationDetailsModel?)

Properties

Link copied to clipboard
@SerialName(value = "business_account_uuid")
val businessAccountUuid: String?

The uuid of the Business account to which this Stakeholder belongs.

Link copied to clipboard
@SerialName(value = "business_information")
val businessInformation: BusinessInformationDetailsModel?

Business information of type AccountTypeModel.BUSINESS.

Link copied to clipboard
@SerialName(value = "cardholder_information")
val cardholderInformation: CardholderInformationDetailsModel?

Cardholder information of type AccountTypeModel.CARDHOLDER.

Link copied to clipboard
@SerialName(value = "consumer_information")
val consumerInformation: ConsumerInformationDetailsModel?

Consumer information of type AccountTypeModel.CONSUMER.

Link copied to clipboard
@SerialName(value = "parent_account_uuid")
val parentAccountUuid: String?

The uuid of the account to which this Cardholder belongs.

Link copied to clipboard
@SerialName(value = "stakeholder_information")
val stakeholderInformation: StakeholderInformationDetailsModel?

Stakeholder information of type AccountTypeModel.STAKEHOLDER.

Link copied to clipboard
@SerialName(value = "stakeholders")
val stakeholders: List<StakeholderDetailsModel>?

The list of associated stakeholders of a business account.