Skip to content

Commit 5534302

Browse files
committed
fix README.md and PaymentTest class
1 parent 25e5faf commit 5534302

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

BunqSdk.Tests/Model/Generated/PaymentTests.cs renamed to BunqSdk.Tests/Model/Generated/PaymentTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Bunq.Sdk.Tests.Model.Generated
1010
/// Tests:
1111
/// Payment
1212
/// </summary>
13-
public class PaymentTests : BunqSdkTestBase
13+
public class PaymentTest : BunqSdkTestBase
1414
{
1515
/// <summary>
1616
/// Config values.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var apiContext = ApiContext.Restore(API_CONTEXT_FILE_PATH);
4848
to/restored from the `bunq.conf` file in the same folder with your executable.
4949

5050
#### Example
51-
See [`ApiContextSaveSample.cs`](./Samples/ApiContextSaveSample.cs)
51+
See [`ApiContextSaveSample.cs`](./BunqSdk.Samples/ApiContextSaveSample.cs)
5252

5353
The API context can then be saved with:
5454

@@ -89,7 +89,7 @@ var paymentId = Payment.Create(apiContext, paymentMap, USER_ITEM_ID,
8989
```
9090

9191
##### Example
92-
See [`PaymentSample.cs`](./Samples/PaymentSample.cs)
92+
See [`PaymentSample.cs`](./BunqSdk.Samples/PaymentSample.cs)
9393

9494
#### Reading objects
9595
Reading objects through the API requires an `ApiContext`, identifiers of all dependencies (such as
@@ -103,7 +103,7 @@ var monetaryAccount = MonetaryAccount.Get(apiContext, USER_ITEM_ID, MONETARY_ACC
103103
```
104104

105105
##### Example
106-
See [`MonetaryAccountSample.cs`](./Samples/MonetaryAccountSample.cs)
106+
See [`MonetaryAccountSample.cs`](./BunqSdk.Samples/MonetaryAccountSample.cs)
107107

108108
#### Updating objects
109109
Updating objects through the API goes the same way as creating objects, except that also the object to update identifier
@@ -116,7 +116,7 @@ var requestUpdated = RequestInquiry.Update(apiContext, requestUpdateMap, USER_IT
116116
```
117117

118118
##### Example
119-
See [`RequestSample.cs`](./Samples/RequestSample.cs)
119+
See [`RequestSample.cs`](./BunqSdk.Samples/RequestSample.cs)
120120

121121
#### Deleting objects
122122
Deleting objects through the API requires an `ApiContext`, identifiers of all dependencies (such as User ID required for
@@ -128,7 +128,7 @@ CustomerStatementExport.Delete(apiContext, userId, monetaryAccountId, customerSt
128128
```
129129

130130
##### Example
131-
See [`CustomerStatementExportSample.cs`](./Samples/CustomerStatementExportSample.cs)
131+
See [`CustomerStatementExportSample.cs`](./BunqSdk.Samples/CustomerStatementExportSample.cs)
132132

133133
#### Listing objects
134134
Listing objects through the API requires an `ApiContext` and identifiers of all dependencies (such as User ID required
@@ -139,7 +139,7 @@ var users = User.List(apiContext);
139139
```
140140

141141
##### Example
142-
See [`UserListSample.cs`](./Samples/UserListSample.cs)
142+
See [`UserListSample.cs`](./BunqSdk.Samples/UserListSample.cs)
143143

144144
## Running Samples
145145
In order to make the experience of getting into bunq C# SDK smoother, we have bundled it with `BunqSdk.Samples`, a

0 commit comments

Comments
 (0)