| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| name |
str |
|
[optional] |
| code |
str |
|
[optional] |
| description |
str |
|
[optional] |
| can_edit |
List[str] |
|
[optional] |
| can_delete |
bool |
|
[optional] |
| can_disable |
bool |
|
[optional] |
| created_at |
str |
|
[optional] |
| updated_at |
str |
|
[optional] |
from cloudbeds_pms.models.group_response_schema import GroupResponseSchema
# TODO update the JSON string below
json = "{}"
# create an instance of GroupResponseSchema from a JSON string
group_response_schema_instance = GroupResponseSchema.from_json(json)
# print the JSON string representation of the object
print(GroupResponseSchema.to_json())
# convert the object into a dict
group_response_schema_dict = group_response_schema_instance.to_dict()
# create an instance of GroupResponseSchema from a dict
group_response_schema_from_dict = GroupResponseSchema.from_dict(group_response_schema_dict)
[Back to Model list] [Back to API list] [Back to README]