Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

File metadata and controls

31 lines (22 loc) · 966 Bytes

Permissions

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
permissions List[PermissionFields] [optional]

Example

from hyperstack.models.permissions import Permissions

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

# convert the object into a dict
permissions_dict = permissions_instance.to_dict()
# create an instance of Permissions from a dict
permissions_form_dict = permissions.from_dict(permissions_dict)

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