Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
from akeyless.models.delete_auth_method_output import DeleteAuthMethodOutput
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteAuthMethodOutput from a JSON string
delete_auth_method_output_instance = DeleteAuthMethodOutput.from_json(json)
# print the JSON string representation of the object
print(DeleteAuthMethodOutput.to_json())
# convert the object into a dict
delete_auth_method_output_dict = delete_auth_method_output_instance.to_dict()
# create an instance of DeleteAuthMethodOutput from a dict
delete_auth_method_output_from_dict = DeleteAuthMethodOutput.from_dict(delete_auth_method_output_dict)
[Back to Model list] [Back to API list] [Back to README]