Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 796 Bytes

ACL.md

File metadata and controls

29 lines (21 loc) · 796 Bytes

ACL

Properties

Name Type Description Notes
mode str [optional]
ids List[ACLIdsInner] [optional]

Example

from wonde.models.acl import ACL

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

# convert the object into a dict
acl_dict = acl_instance.to_dict()
# create an instance of ACL from a dict
acl_form_dict = acl.from_dict(acl_dict)

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