Name |
Type |
Description |
Notes |
title |
str |
|
[optional] |
description |
str |
|
[optional] |
visibility |
str |
|
[optional] |
from alfresco_core_api_client.models.site_body_update import SiteBodyUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of SiteBodyUpdate from a JSON string
site_body_update_instance = SiteBodyUpdate.from_json(json)
# print the JSON string representation of the object
print SiteBodyUpdate.to_json()
# convert the object into a dict
site_body_update_dict = site_body_update_instance.to_dict()
# create an instance of SiteBodyUpdate from a dict
site_body_update_form_dict = site_body_update.from_dict(site_body_update_dict)
[Back to Model list] [Back to API list] [Back to README]