Skip to content

Commit e117525

Browse files
authored
Merge pull request #89 from fireblocks/fireblocks-api-spec/generated/8699
Generated SDK #8699
2 parents 01bfbf7 + a9c897b commit e117525

File tree

267 files changed

+16944
-2224
lines changed

Some content is hidden

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

267 files changed

+16944
-2224
lines changed

.openapi-generator/FILES

Lines changed: 195 additions & 54 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 95 additions & 26 deletions
Large diffs are not rendered by default.

docs/AddCosignerRequest.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# AddCosignerRequest
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**api_key_id** | **str** | The id of the API key to be paired with the cosigner |
9+
**name** | **str** | The name of the cosigner |
10+
**existing_cosigner** | **bool** | Whether the cosigner already exists in another workspace | [optional] [default to False]
11+
12+
## Example
13+
14+
```python
15+
from fireblocks.models.add_cosigner_request import AddCosignerRequest
16+
17+
# TODO update the JSON string below
18+
json = "{}"
19+
# create an instance of AddCosignerRequest from a JSON string
20+
add_cosigner_request_instance = AddCosignerRequest.from_json(json)
21+
# print the JSON string representation of the object
22+
print(AddCosignerRequest.to_json())
23+
24+
# convert the object into a dict
25+
add_cosigner_request_dict = add_cosigner_request_instance.to_dict()
26+
# create an instance of AddCosignerRequest from a dict
27+
add_cosigner_request_from_dict = AddCosignerRequest.from_dict(add_cosigner_request_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/AddCosignerResponse.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# AddCosignerResponse
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**api_key_id** | **str** | The id of the API key to be paired with the cosigner |
9+
**name** | **str** | The name of the cosigner |
10+
**existing_cosigner** | **bool** | Whether the cosigner already exists in another workspace | [optional] [default to False]
11+
**pending_cosigner_id** | **str** | The unique identifier of a pending cosigner |
12+
13+
## Example
14+
15+
```python
16+
from fireblocks.models.add_cosigner_response import AddCosignerResponse
17+
18+
# TODO update the JSON string below
19+
json = "{}"
20+
# create an instance of AddCosignerResponse from a JSON string
21+
add_cosigner_response_instance = AddCosignerResponse.from_json(json)
22+
# print the JSON string representation of the object
23+
print(AddCosignerResponse.to_json())
24+
25+
# convert the object into a dict
26+
add_cosigner_response_dict = add_cosigner_response_instance.to_dict()
27+
# create an instance of AddCosignerResponse from a dict
28+
add_cosigner_response_from_dict = AddCosignerResponse.from_dict(add_cosigner_response_dict)
29+
```
30+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
31+
32+

docs/AdditionalInfoDto.md renamed to docs/AdditionalInfo.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# AdditionalInfoDto
1+
# AdditionalInfo
22

3+
Additional information related to the blockchain. This may include extra details about the blockchain network.
34

45
## Properties
56

@@ -12,19 +13,19 @@ Name | Type | Description | Notes
1213
## Example
1314

1415
```python
15-
from fireblocks.models.additional_info_dto import AdditionalInfoDto
16+
from fireblocks.models.additional_info import AdditionalInfo
1617

1718
# TODO update the JSON string below
1819
json = "{}"
19-
# create an instance of AdditionalInfoDto from a JSON string
20-
additional_info_dto_instance = AdditionalInfoDto.from_json(json)
20+
# create an instance of AdditionalInfo from a JSON string
21+
additional_info_instance = AdditionalInfo.from_json(json)
2122
# print the JSON string representation of the object
22-
print(AdditionalInfoDto.to_json())
23+
print(AdditionalInfo.to_json())
2324

2425
# convert the object into a dict
25-
additional_info_dto_dict = additional_info_dto_instance.to_dict()
26-
# create an instance of AdditionalInfoDto from a dict
27-
additional_info_dto_from_dict = AdditionalInfoDto.from_dict(additional_info_dto_dict)
26+
additional_info_dict = additional_info_instance.to_dict()
27+
# create an instance of AdditionalInfo from a dict
28+
additional_info_from_dict = AdditionalInfo.from_dict(additional_info_dict)
2829
```
2930
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3031

docs/ApiKey.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**id** | **str** | The unique identifier of the API key |
9-
**last_seen** | **datetime** | The date the API key was last seen |
9+
**last_seen** | **datetime** | The date the API key was last seen | [optional]
10+
**callback_handler** | [**CallbackHandler**](CallbackHandler.md) | | [optional]
1011

1112
## Example
1213

docs/AssetBadRequestErrorResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**message** | **str** | Bad request error code |
9-
**code** | **str** | Error code |
9+
**code** | **float** | Error code |
1010

1111
## Example
1212

docs/AssetClassBeta.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AssetClassBeta
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/AssetConflictErrorResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**message** | **str** | Conflict error code |
9-
**code** | **str** | Error code |
9+
**code** | **float** | Error code |
1010

1111
## Example
1212

docs/AssetForbiddenErrorResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**message** | **str** | Forbidden error code |
9-
**code** | **str** | Error code |
9+
**code** | **float** | Error code |
1010

1111
## Example
1212

0 commit comments

Comments
 (0)