Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

NodeBodyCopy.md

File metadata and controls

29 lines (21 loc) · 1.05 KB

NodeBodyCopy

Properties

Name Type Description Notes
target_parent_id str
name str The name must not contain spaces or the following special characters: * &quot; < > \ / ? : and . The character . must not be used at the end of the name.

Example

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]