Name |
Type |
Description |
Notes |
target_parent_id |
str |
|
|
name |
str |
The name must not contain spaces or the following special characters: * " < > \ / ? : and |
. The character . must not be used at the end of the name. |
from alfresco_core_api_client.models.node_body_copy import NodeBodyCopy
# TODO update the JSON string below
json = "{}"
# create an instance of NodeBodyCopy from a JSON string
node_body_copy_instance = NodeBodyCopy.from_json(json)
# print the JSON string representation of the object
print NodeBodyCopy.to_json()
# convert the object into a dict
node_body_copy_dict = node_body_copy_instance.to_dict()
# create an instance of NodeBodyCopy from a dict
node_body_copy_form_dict = node_body_copy.from_dict(node_body_copy_dict)
[Back to Model list] [Back to API list] [Back to README]