Name |
Type |
Description |
Notes |
fragment_results |
List[int] |
|
[optional] |
from akeyless.models.create_dfc_key_output import CreateDFCKeyOutput
# TODO update the JSON string below
json = "{}"
# create an instance of CreateDFCKeyOutput from a JSON string
create_dfc_key_output_instance = CreateDFCKeyOutput.from_json(json)
# print the JSON string representation of the object
print(CreateDFCKeyOutput.to_json())
# convert the object into a dict
create_dfc_key_output_dict = create_dfc_key_output_instance.to_dict()
# create an instance of CreateDFCKeyOutput from a dict
create_dfc_key_output_from_dict = CreateDFCKeyOutput.from_dict(create_dfc_key_output_dict)
[Back to Model list] [Back to API list] [Back to README]