DSUser

data class DSUser(userId: String, name: String, email: String, accountId: String, accounts: List<DSAccount>)

This class provides information about the User. This is passed back to the integrating app

Parameters

userId

user ID of the account holder

name

name of the account holder

email

email address of the account holder

accountId

ID of the account

Constructors

Link copied to clipboard
fun DSUser(userId: String, name: String, email: String, accountId: String, accounts: List<DSAccount>)

Properties

Link copied to clipboard
var accountId: String
Link copied to clipboard
val accounts: List<DSAccount>
Link copied to clipboard
val email: String
Link copied to clipboard
var name: String
Link copied to clipboard
val userId: String