-
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.
Generated SDK for version COR-46191/fix_pipelines
- Loading branch information
fireblocks_dx_team
committed
Jun 3, 2024
1 parent
01a047f
commit 79c8112
Showing
67 changed files
with
4,207 additions
and
60 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
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 @@ | ||
# CreateSigningKeyDto | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**signing_device_key_id** | **str** | The ID, name or label of the key specified on the customer's signing device. | | ||
**signed_cert_pem** | **str** | The signed certificate that includes the public key PEM of the signing key, signed by a validation key. | | ||
**agent_user_id** | **str** | Id of user to which this key belongs | | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.create_signing_key_dto import CreateSigningKeyDto | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateSigningKeyDto from a JSON string | ||
create_signing_key_dto_instance = CreateSigningKeyDto.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateSigningKeyDto.to_json()) | ||
|
||
# convert the object into a dict | ||
create_signing_key_dto_dict = create_signing_key_dto_instance.to_dict() | ||
# create an instance of CreateSigningKeyDto from a dict | ||
create_signing_key_dto_from_dict = CreateSigningKeyDto.from_dict(create_signing_key_dto_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 @@ | ||
# CreateValidationKeyDto | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**public_key_pem** | **str** | The PEM encoded public key of the validation key being added | | ||
**days_till_expired** | **float** | The number of days from the date the validation key was added until it expires | | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.create_validation_key_dto import CreateValidationKeyDto | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateValidationKeyDto from a JSON string | ||
create_validation_key_dto_instance = CreateValidationKeyDto.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateValidationKeyDto.to_json()) | ||
|
||
# convert the object into a dict | ||
create_validation_key_dto_dict = create_validation_key_dto_instance.to_dict() | ||
# create an instance of CreateValidationKeyDto from a dict | ||
create_validation_key_dto_from_dict = CreateValidationKeyDto.from_dict(create_validation_key_dto_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 @@ | ||
# CreateValidationKeyResponseDto | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**validation_key** | [**ValidationKeyDto**](ValidationKeyDto.md) | Created validation key | | ||
**admins** | **List[str]** | Admins who have to approve the validation key addition | | ||
**approval_threshold** | **float** | Minimal number of approvers required. 0 for all | | ||
**request_id** | **float** | Approval request id. Can be cancelled | | ||
|
||
## Example | ||
|
||
```python | ||
from fireblocks.models.create_validation_key_response_dto import CreateValidationKeyResponseDto | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateValidationKeyResponseDto from a JSON string | ||
create_validation_key_response_dto_instance = CreateValidationKeyResponseDto.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateValidationKeyResponseDto.to_json()) | ||
|
||
# convert the object into a dict | ||
create_validation_key_response_dto_dict = create_validation_key_response_dto_instance.to_dict() | ||
# create an instance of CreateValidationKeyResponseDto from a dict | ||
create_validation_key_response_dto_from_dict = CreateValidationKeyResponseDto.from_dict(create_validation_key_response_dto_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.