formatting
This commit is contained in:
parent
3197c86286
commit
2bfb7853fd
@ -247,7 +247,6 @@ export interface SimulateIncomingTransactionRequest {
|
|||||||
currency: string;
|
currency: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The bundle aims at minimizing the amount of input
|
* The bundle aims at minimizing the amount of input
|
||||||
* data that is required to initialize a new user + Ebics
|
* data that is required to initialize a new user + Ebics
|
||||||
@ -260,11 +259,10 @@ class NexusUserBundle {
|
|||||||
localAccountName: string;
|
localAccountName: string;
|
||||||
remoteAccountName: string;
|
remoteAccountName: string;
|
||||||
|
|
||||||
constructor(ebicsURL: string, nameSalt: string) {
|
constructor(ebicsURL: string, salt: string) {
|
||||||
|
|
||||||
this.userReq = {
|
this.userReq = {
|
||||||
username: `username-${salt}`,
|
username: `username-${salt}`,
|
||||||
password: `password-${salt}`
|
password: `password-${salt}`,
|
||||||
};
|
};
|
||||||
|
|
||||||
this.connReq = {
|
this.connReq = {
|
||||||
@ -307,7 +305,7 @@ class SandboxUserBundle {
|
|||||||
partnerID: `ebicspartner-${salt}`,
|
partnerID: `ebicspartner-${salt}`,
|
||||||
userID: `ebicsuser-${salt}`,
|
userID: `ebicsuser-${salt}`,
|
||||||
},
|
},
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user