You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[create](docs/sdks/transactions/README.md#create) - Create bank transactions
182
+
*[getCreateModel](docs/sdks/transactions/README.md#getcreatemodel) - Get create bank transactions model
180
183
*[getCreateOperation](docs/sdks/transactions/README.md#getcreateoperation) - Get create operation
181
184
*[listCreateOperations](docs/sdks/transactions/README.md#listcreateoperations) - List create operations
182
185
@@ -290,10 +293,10 @@ Handling errors in this SDK should largely match your expectations. All operatio
290
293
291
294
By default, an API error will throw a `models/errors/SDKError` exception. When custom error responses are specified for an operation, the SDK may also throw their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create` method throws the following exceptions:
You can override the default server globally by passing a server index to the `serverIndex` builder method when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
.description("Requested early access to the new financing scheme.")
368
-
.build();
369
-
370
-
CreateCompanyResponse res = sdk.companies().create()
371
-
.request(req)
372
-
.call();
373
-
374
-
if (res.company().isPresent()) {
375
-
// handle response
376
-
}
377
-
}
378
-
}
379
-
```
380
-
381
-
382
340
### Override Server URL Per-Client
383
341
384
-
The default server can also be overridden globally by passing a URL to the `serverURL` builder method when initializing the SDK client instance. For example:
342
+
The default server can also be overridden globally using the `.serverURL(String serverUrl)` builder method when initializing the SDK client instance. For example:
385
343
```java
386
344
packagehello.world;
387
345
@@ -424,9 +382,9 @@ public class Application {
424
382
425
383
This SDK supports the following security scheme globally:
426
384
427
-
| Name | Type | Scheme|
428
-
| ------------ | ------------|------------ |
429
-
|`authHeader`| apiKey | API key|
385
+
| Name | Type | Scheme |
386
+
| ------------ | ------ | ------- |
387
+
|`authHeader`| apiKey | API key |
430
388
431
389
To authenticate with the API the `authHeader` parameter must be set when initializing the SDK client instance. For example:
0 commit comments