Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 999 Bytes

AuthMethodDeleteOutput.md

File metadata and controls

29 lines (20 loc) · 999 Bytes

AuthMethodDeleteOutput

Properties

Name Type Description Notes
name str [optional]

Example

from akeyless.models.auth_method_delete_output import AuthMethodDeleteOutput

# TODO update the JSON string below
json = "{}"
# create an instance of AuthMethodDeleteOutput from a JSON string
auth_method_delete_output_instance = AuthMethodDeleteOutput.from_json(json)
# print the JSON string representation of the object
print(AuthMethodDeleteOutput.to_json())

# convert the object into a dict
auth_method_delete_output_dict = auth_method_delete_output_instance.to_dict()
# create an instance of AuthMethodDeleteOutput from a dict
auth_method_delete_output_from_dict = AuthMethodDeleteOutput.from_dict(auth_method_delete_output_dict)

[Back to Model list] [Back to API list] [Back to README]