Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1012 Bytes

DeleteAuthMethodsOutput.md

File metadata and controls

29 lines (20 loc) · 1012 Bytes

DeleteAuthMethodsOutput

Properties

Name Type Description Notes
path str [optional]

Example

from akeyless.models.delete_auth_methods_output import DeleteAuthMethodsOutput

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

# convert the object into a dict
delete_auth_methods_output_dict = delete_auth_methods_output_instance.to_dict()
# create an instance of DeleteAuthMethodsOutput from a dict
delete_auth_methods_output_from_dict = DeleteAuthMethodsOutput.from_dict(delete_auth_methods_output_dict)

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