Skip to content

Commit 0f190af

Browse files
authored
Merge pull request #121 from fireblocks/fireblocks-api-spec/generated/5834
Generated SDK #5834
2 parents 2aef480 + c5cc640 commit 0f190af

418 files changed

Lines changed: 20522 additions & 781 deletions

File tree

Some content is hidden

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

.openapi-generator/FILES

Lines changed: 309 additions & 9 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 107 additions & 5 deletions
Large diffs are not rendered by default.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# AccountBasedAccessProviderDetails
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**manifest** | [**Manifest**](Manifest.md) | |
9+
**connected** | **bool** | Whether the provider is currently connected |
10+
**accounts** | [**List[AccountBase]**](AccountBase.md) | | [optional]
11+
12+
## Example
13+
14+
```python
15+
from fireblocks.models.account_based_access_provider_details import AccountBasedAccessProviderDetails
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of AccountBasedAccessProviderDetails from a JSON string
20+
account_based_access_provider_details_instance = AccountBasedAccessProviderDetails.from_json(json)
21+
# print the JSON string representation of the object
22+
print(AccountBasedAccessProviderDetails.to_json())
23+
24+
# convert the object into a dict
25+
account_based_access_provider_details_dict = account_based_access_provider_details_instance.to_dict()
26+
# create an instance of AccountBasedAccessProviderDetails from a dict
27+
account_based_access_provider_details_from_dict = AccountBasedAccessProviderDetails.from_dict(account_based_access_provider_details_dict)
28+
```
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

docs/AccountConfig.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# AccountConfig
22

3-
Policy source/destination configuration
3+
Policy account configuration
44

55
## Properties
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**type** | [**AccountType2**](AccountType2.md) | |
9+
**type** | [**List[AccountType2]**](AccountType2.md) | Account types | [optional]
1010
**sub_type** | [**List[AccountIdentifier]**](AccountIdentifier.md) | | [optional]
1111
**ids** | [**List[AccountIdentifier]**](AccountIdentifier.md) | | [optional]
12+
**tags** | [**List[PolicyTag]**](PolicyTag.md) | Tags for account matching | [optional]
1213
**operator** | [**PolicyOperator**](PolicyOperator.md) | |
1314
**match_from** | **str** | Whether to match from account or source | [optional]
1415

docs/AchAccountType.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# AchAccountType
2+
3+
Type of the bank account.
4+
5+
## Enum
6+
7+
* `CHECKING` (value: `'CHECKING'`)
8+
9+
* `SAVINGS` (value: `'SAVINGS'`)
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/AchAddress.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# AchAddress
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**account_holder** | [**AccountHolderDetails**](AccountHolderDetails.md) | |
9+
**bank_name** | **str** | Name of the bank. | [optional]
10+
**bank_account_number** | **str** | The bank account number for the ACH transfer. |
11+
**routing_number** | **str** | Routing number identifying the bank account. |
12+
**account_type** | [**AchAccountType**](AchAccountType.md) | |
13+
14+
## Example
15+
16+
```python
17+
from fireblocks.models.ach_address import AchAddress
18+
19+
# TODO update the JSON string below
20+
json = "{}"
21+
# create an instance of AchAddress from a JSON string
22+
ach_address_instance = AchAddress.from_json(json)
23+
# print the JSON string representation of the object
24+
print(AchAddress.to_json())
25+
26+
# convert the object into a dict
27+
ach_address_dict = ach_address_instance.to_dict()
28+
# create an instance of AchAddress from a dict
29+
ach_address_from_dict = AchAddress.from_dict(ach_address_dict)
30+
```
31+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32+
33+

docs/AchDestination.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# AchDestination
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**type** | **str** | |
9+
**address** | [**AchAddress**](AchAddress.md) | |
10+
11+
## Example
12+
13+
```python
14+
from fireblocks.models.ach_destination import AchDestination
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of AchDestination from a JSON string
19+
ach_destination_instance = AchDestination.from_json(json)
20+
# print the JSON string representation of the object
21+
print(AchDestination.to_json())
22+
23+
# convert the object into a dict
24+
ach_destination_dict = ach_destination_instance.to_dict()
25+
# create an instance of AchDestination from a dict
26+
ach_destination_from_dict = AchDestination.from_dict(ach_destination_dict)
27+
```
28+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29+
30+

docs/AlertExposureTypeEnum.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# AlertExposureTypeEnum
2+
3+
Alert exposure type (AlertExposureType enum)
4+
5+
## Enum
6+
7+
* `DIRECT` (value: `'DIRECT'`)
8+
9+
* `INDIRECT` (value: `'INDIRECT'`)
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/AlertLevelEnum.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AlertLevelEnum
2+
3+
Alert level severity
4+
5+
## Enum
6+
7+
* `SEVERE` (value: `'SEVERE'`)
8+
9+
* `HIGH` (value: `'HIGH'`)
10+
11+
* `MEDIUM` (value: `'MEDIUM'`)
12+
13+
* `LOW` (value: `'LOW'`)
14+
15+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
16+
17+

docs/AmlAlert.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# AmlAlert
2+
3+
AML alert information
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**alert_level** | [**AlertLevelEnum**](AlertLevelEnum.md) | |
10+
**alert_name** | **str** | Name or type of the alert | [optional]
11+
**category** | **str** | Alert category | [optional]
12+
**service** | **str** | Service that generated the alert | [optional]
13+
**external_id** | **str** | External identifier for the alert |
14+
**alert_amount** | **float** | Amount associated with the alert |
15+
**exposure_type** | [**AlertExposureTypeEnum**](AlertExposureTypeEnum.md) | |
16+
**policy_action** | **str** | Recommended action based on policy | [optional]
17+
**category_id** | **float** | Category identifier | [optional]
18+
19+
## Example
20+
21+
```python
22+
from fireblocks.models.aml_alert import AmlAlert
23+
24+
# TODO update the JSON string below
25+
json = "{}"
26+
# create an instance of AmlAlert from a JSON string
27+
aml_alert_instance = AmlAlert.from_json(json)
28+
# print the JSON string representation of the object
29+
print(AmlAlert.to_json())
30+
31+
# convert the object into a dict
32+
aml_alert_dict = aml_alert_instance.to_dict()
33+
# create an instance of AmlAlert from a dict
34+
aml_alert_from_dict = AmlAlert.from_dict(aml_alert_dict)
35+
```
36+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
37+
38+

0 commit comments

Comments
 (0)