Account Profile
data class AccountProfile(val business: AccountObjects.BusinessAccount? = null, val individual: AccountObjects.IndividualAccount? = null)
Profile information for an account, containing either business or individual data.
Constructors
Link copied to clipboard
constructor(business: AccountObjects.BusinessAccount? = null, individual: AccountObjects.IndividualAccount? = null)
Properties
Link copied to clipboard
Business profile details, present when the account type is AccountType.BUSINESS.
Link copied to clipboard
Individual profile details, present when the account type is AccountType.INDIVIDUAL.