-
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 #89 from fireblocks/fireblocks-api-spec/generated/…
…8699 Generated SDK #8699
- Loading branch information
Showing
267 changed files
with
16,944 additions
and
2,224 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
# AddCosignerRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**api_key_id** | **str** | The id of the API key to be paired with the cosigner | | ||
**name** | **str** | The name of the cosigner | | ||
**existing_cosigner** | **bool** | Whether the cosigner already exists in another workspace | [optional] [default to False] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.add_cosigner_request import AddCosignerRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddCosignerRequest from a JSON string | ||
add_cosigner_request_instance = AddCosignerRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddCosignerRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
add_cosigner_request_dict = add_cosigner_request_instance.to_dict() | ||
# create an instance of AddCosignerRequest from a dict | ||
add_cosigner_request_from_dict = AddCosignerRequest.from_dict(add_cosigner_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,32 @@ | ||
# AddCosignerResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**api_key_id** | **str** | The id of the API key to be paired with the cosigner | | ||
**name** | **str** | The name of the cosigner | | ||
**existing_cosigner** | **bool** | Whether the cosigner already exists in another workspace | [optional] [default to False] | ||
**pending_cosigner_id** | **str** | The unique identifier of a pending cosigner | | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.add_cosigner_response import AddCosignerResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AddCosignerResponse from a JSON string | ||
add_cosigner_response_instance = AddCosignerResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AddCosignerResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
add_cosigner_response_dict = add_cosigner_response_instance.to_dict() | ||
# create an instance of AddCosignerResponse from a dict | ||
add_cosigner_response_from_dict = AddCosignerResponse.from_dict(add_cosigner_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
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,11 @@ | ||
# AssetClassBeta | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[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
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,31 @@ | ||
# AssetMedia | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**url** | **str** | Media URL | | ||
**type** | **str** | Media type | | ||
**attributes** | [**AssetMediaAttributes**](AssetMediaAttributes.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.asset_media import AssetMedia | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AssetMedia from a JSON string | ||
asset_media_instance = AssetMedia.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AssetMedia.to_json()) | ||
|
||
# convert the object into a dict | ||
asset_media_dict = asset_media_instance.to_dict() | ||
# create an instance of AssetMedia from a dict | ||
asset_media_from_dict = AssetMedia.from_dict(asset_media_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,30 @@ | ||
# AssetMediaAttributes | ||
|
||
Media attributes | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**monochrome** | **bool** | Monochrome flag | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.asset_media_attributes import AssetMediaAttributes | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AssetMediaAttributes from a JSON string | ||
asset_media_attributes_instance = AssetMediaAttributes.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AssetMediaAttributes.to_json()) | ||
|
||
# convert the object into a dict | ||
asset_media_attributes_dict = asset_media_attributes_instance.to_dict() | ||
# create an instance of AssetMediaAttributes from a dict | ||
asset_media_attributes_from_dict = AssetMediaAttributes.from_dict(asset_media_attributes_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 @@ | ||
# AssetMetadataBeta | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**scope** | **str** | The scope of the asset | | ||
**deprecated** | **bool** | Is asset deprecated | | ||
**deprecation_referral_id** | **str** | New asset ID replacement | [optional] | ||
**verified** | **bool** | Is asset verified by Fireblocks | | ||
**website** | **str** | Vendor’s website | [optional] | ||
**media** | [**List[AssetMedia]**](AssetMedia.md) | Asset’s media | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.asset_metadata_beta import AssetMetadataBeta | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AssetMetadataBeta from a JSON string | ||
asset_metadata_beta_instance = AssetMetadataBeta.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AssetMetadataBeta.to_json()) | ||
|
||
# convert the object into a dict | ||
asset_metadata_beta_dict = asset_metadata_beta_instance.to_dict() | ||
# create an instance of AssetMetadataBeta from a dict | ||
asset_metadata_beta_from_dict = AssetMetadataBeta.from_dict(asset_metadata_beta_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
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 @@ | ||
# AssetOnchainBeta | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**symbol** | **str** | The asset symbol | | ||
**name** | **str** | The asset name | | ||
**address** | **str** | The asset address | [optional] | ||
**decimals** | **float** | Number of decimals | | ||
**standards** | **List[str]** | Supported standards | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.asset_onchain_beta import AssetOnchainBeta | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AssetOnchainBeta from a JSON string | ||
asset_onchain_beta_instance = AssetOnchainBeta.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AssetOnchainBeta.to_json()) | ||
|
||
# convert the object into a dict | ||
asset_onchain_beta_dict = asset_onchain_beta_instance.to_dict() | ||
# create an instance of AssetOnchainBeta from a dict | ||
asset_onchain_beta_from_dict = AssetOnchainBeta.from_dict(asset_onchain_beta_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
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
Oops, something went wrong.