-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from fireblocks/fireblocks-api-spec/generated/538
Generated SDK #538
- Loading branch information
Showing
39 changed files
with
1,747 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# AddExchangeAccountRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**exchange_type** | [**ExchangeType**](ExchangeType.md) | | | ||
**name** | **str** | Display name of the exchange account | | ||
**creds** | **str** | Encrypted credentials | [optional] | ||
**key** | **str** | Api key of the exchange | [optional] | ||
**main_account_id** | **str** | Optional - main account id of the exchange | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.add_exchange_account_request import AddExchangeAccountRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddExchangeAccountRequest from a JSON string | ||
add_exchange_account_request_instance = AddExchangeAccountRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddExchangeAccountRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
add_exchange_account_request_dict = add_exchange_account_request_instance.to_dict() | ||
# create an instance of AddExchangeAccountRequest from a dict | ||
add_exchange_account_request_from_dict = AddExchangeAccountRequest.from_dict(add_exchange_account_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# AddExchangeAccountResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **str** | Exchange account's identifier | [optional] | ||
**name** | **str** | Display name of the exchange account | [optional] | ||
**exchange_type** | [**ExchangeType**](ExchangeType.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.add_exchange_account_response import AddExchangeAccountResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddExchangeAccountResponse from a JSON string | ||
add_exchange_account_response_instance = AddExchangeAccountResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddExchangeAccountResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
add_exchange_account_response_dict = add_exchange_account_response_instance.to_dict() | ||
# create an instance of AddExchangeAccountResponse from a dict | ||
add_exchange_account_response_from_dict = AddExchangeAccountResponse.from_dict(add_exchange_account_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# AmlRegistrationResultFullPayload | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**provider** | **str** | | [optional] | ||
**success** | **bool** | | [optional] | ||
**timestamp** | **float** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.aml_registration_result_full_payload import AmlRegistrationResultFullPayload | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AmlRegistrationResultFullPayload from a JSON string | ||
aml_registration_result_full_payload_instance = AmlRegistrationResultFullPayload.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AmlRegistrationResultFullPayload.to_json()) | ||
|
||
# convert the object into a dict | ||
aml_registration_result_full_payload_dict = aml_registration_result_full_payload_instance.to_dict() | ||
# create an instance of AmlRegistrationResultFullPayload from a dict | ||
aml_registration_result_full_payload_from_dict = AmlRegistrationResultFullPayload.from_dict(aml_registration_result_full_payload_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# ComplianceResultFullPayload | ||
|
||
The result of the Compliance AML/Travel Rule screening. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**aml** | [**List[ComplianceScreeningResultFullPayload]**](ComplianceScreeningResultFullPayload.md) | The end result of the AML screening. | [optional] | ||
**tr** | [**List[ComplianceScreeningResultFullPayload]**](ComplianceScreeningResultFullPayload.md) | The result of the Travel Rule screening. | [optional] | ||
**aml_list** | [**List[ComplianceScreeningResultFullPayload]**](ComplianceScreeningResultFullPayload.md) | The list of all results of the AML screening. | [optional] | ||
**status** | **str** | Status of compliance result screening. | [optional] | ||
**aml_registration** | [**List[AmlRegistrationResultFullPayload]**](AmlRegistrationResultFullPayload.md) | The results of the AML address registration. | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.compliance_result_full_payload import ComplianceResultFullPayload | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ComplianceResultFullPayload from a JSON string | ||
compliance_result_full_payload_instance = ComplianceResultFullPayload.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ComplianceResultFullPayload.to_json()) | ||
|
||
# convert the object into a dict | ||
compliance_result_full_payload_dict = compliance_result_full_payload_instance.to_dict() | ||
# create an instance of ComplianceResultFullPayload from a dict | ||
compliance_result_full_payload_from_dict = ComplianceResultFullPayload.from_dict(compliance_result_full_payload_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# ComplianceScreeningResultFullPayload | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**provider** | **str** | | [optional] | ||
**payload** | **object** | The payload of the screening result. The payload is a JSON object that contains the screening result. The payload is different for each screening provider. | [optional] | ||
**bypass_reason** | **str** | | [optional] | ||
**screening_status** | **str** | | [optional] | ||
**timestamp** | **float** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.compliance_screening_result_full_payload import ComplianceScreeningResultFullPayload | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ComplianceScreeningResultFullPayload from a JSON string | ||
compliance_screening_result_full_payload_instance = ComplianceScreeningResultFullPayload.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ComplianceScreeningResultFullPayload.to_json()) | ||
|
||
# convert the object into a dict | ||
compliance_screening_result_full_payload_dict = compliance_screening_result_full_payload_instance.to_dict() | ||
# create an instance of ComplianceScreeningResultFullPayload from a dict | ||
compliance_screening_result_full_payload_from_dict = ComplianceScreeningResultFullPayload.from_dict(compliance_screening_result_full_payload_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.