Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1015 Bytes

DeleteRoleRuleOutput.md

File metadata and controls

30 lines (21 loc) · 1015 Bytes

DeleteRoleRuleOutput

Properties

Name Type Description Notes
deleted bool [optional]
result str [optional]

Example

from akeyless.models.delete_role_rule_output import DeleteRoleRuleOutput

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

# convert the object into a dict
delete_role_rule_output_dict = delete_role_rule_output_instance.to_dict()
# create an instance of DeleteRoleRuleOutput from a dict
delete_role_rule_output_from_dict = DeleteRoleRuleOutput.from_dict(delete_role_rule_output_dict)

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