formatting

This commit is contained in:
ms 2021-02-12 19:28:54 +01:00
parent 3197c86286
commit 2bfb7853fd
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F

View File

@ -247,7 +247,6 @@ export interface SimulateIncomingTransactionRequest {
currency: string;
}
/**
* The bundle aims at minimizing the amount of input
* data that is required to initialize a new user + Ebics
@ -260,11 +259,10 @@ class NexusUserBundle {
localAccountName: string;
remoteAccountName: string;
constructor(ebicsURL: string, nameSalt: string) {
constructor(ebicsURL: string, salt: string) {
this.userReq = {
username: `username-${salt}`,
password: `password-${salt}`
password: `password-${salt}`,
};
this.connReq = {
@ -281,7 +279,7 @@ class NexusUserBundle {
reserveTransferLevel: "report",
accountName: `local-account-${salt}`,
connectionName: `connection-${salt}`,
};
};
this.remoteAccountName = `remote-account-${salt}`;
this.localAccountName = `local-account-${salt}`;
}
@ -307,7 +305,7 @@ class SandboxUserBundle {
partnerID: `ebicspartner-${salt}`,
userID: `ebicsuser-${salt}`,
},
}
};
}
}