| Name |
Type |
Description |
Notes |
| config_id |
str |
|
|
from fireblocks.models.workflow_configuration_id import WorkflowConfigurationId
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowConfigurationId from a JSON string
workflow_configuration_id_instance = WorkflowConfigurationId.from_json(json)
# print the JSON string representation of the object
print(WorkflowConfigurationId.to_json())
# convert the object into a dict
workflow_configuration_id_dict = workflow_configuration_id_instance.to_dict()
# create an instance of WorkflowConfigurationId from a dict
workflow_configuration_id_from_dict = WorkflowConfigurationId.from_dict(workflow_configuration_id_dict)
[Back to Model list] [Back to API list] [Back to README]