Added JobContextType.GetAccountInfo
This commit is contained in:
parent
fa1c05df8c
commit
bfc0e7c563
|
@ -177,7 +177,7 @@ open class FinTsClient @JvmOverloads constructor(
|
||||||
// return GetAccountInfoResponse(it)
|
// 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 */
|
/* First dialog: Get user's basic data like BPD, customer system ID and her TAN methods */
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,9 @@ enum class JobContextType {
|
||||||
|
|
||||||
ChangeTanMedium,
|
ChangeTanMedium,
|
||||||
|
|
||||||
AddAccount,
|
GetAccountInfo,
|
||||||
|
|
||||||
|
AddAccount, // TODO: may split actions and create two JobContexts, one for GetAccountInfo and one for GetTransactions
|
||||||
|
|
||||||
GetTransactions,
|
GetTransactions,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue