@@ -48,7 +48,7 @@ var apiContext = ApiContext.Restore(API_CONTEXT_FILE_PATH);
4848to/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
5353The 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
9595Reading 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
109109Updating 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
122122Deleting 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
134134Listing 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
145145In order to make the experience of getting into bunq C# SDK smoother, we have bundled it with ` BunqSdk.Samples ` , a
0 commit comments