Skip to content

Commit e01e434

Browse files
author
andreals
committed
Automated commit message
1 parent 27c3490 commit e01e434

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+4291
-4532
lines changed

README.md

Lines changed: 44 additions & 51 deletions
Large diffs are not rendered by default.

doc/client.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ The following parameters are configurable for the API Client:
77
| --- | --- | --- |
88
| `serviceRefererName` | `String` | |
99
| `httpClientConfig` | [`ReadonlyHttpClientConfiguration`](http-client-configuration.md) | Http Client Configuration instance. |
10-
| `basicAuthUserName` | `String` | The username to use with basic authentication |
11-
| `basicAuthPassword` | `String` | The password to use with basic authentication |
1210

1311
The API client can be initialized as follows:
1412

@@ -17,7 +15,6 @@ PagarmeApiSDKClient client = new PagarmeApiSDKClient.Builder()
1715
.httpClientConfig(configBuilder -> configBuilder
1816
.timeout(0))
1917
.serviceRefererName("ServiceRefererName")
20-
.basicAuthCredentials("BasicAuthUserName", "BasicAuthPassword")
2118
.build();
2219
```
2320

doc/configuration-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Configuration Interface
33

4-
This is the base class for all exceptions that represent an error response from the server.
4+
This is the interface for client class that holds the configuration getters.
55

66
## Methods
77

doc/controllers/balance-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ GetBalanceOperationResponse getBalanceOperationById(
7171
## Example Usage
7272

7373
```java
74-
long id = 112L;
74+
long id = 112L;
7575

7676
try {
7777
GetBalanceOperationResponse result = balanceOperationsController.getBalanceOperationById(id);

0 commit comments

Comments
 (0)