Added JobContextType.GetAccountInfo

This commit is contained in:
dankito 2024-08-18 04:03:03 +02:00
parent fa1c05df8c
commit bfc0e7c563
2 changed files with 4 additions and 2 deletions

View File

@ -177,7 +177,7 @@ open class FinTsClient @JvmOverloads constructor(
// return GetAccountInfoResponse(it)
}
val context = JobContext(JobContextType.AddAccount, this.callback, product, bank) // TODO: add / change JobContextType
val context = JobContext(JobContextType.GetAccountInfo, this.callback, product, bank)
/* First dialog: Get user's basic data like BPD, customer system ID and her TAN methods */

View File

@ -9,7 +9,9 @@ enum class JobContextType {
ChangeTanMedium,
AddAccount,
GetAccountInfo,
AddAccount, // TODO: may split actions and create two JobContexts, one for GetAccountInfo and one for GetTransactions
GetTransactions,