Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 948 Bytes

ChildAssociation.md

File metadata and controls

29 lines (21 loc) · 948 Bytes

ChildAssociation

Properties

Name Type Description Notes
child_id str
assoc_type str

Example

from alfresco_core_api_client.models.child_association import ChildAssociation

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

# convert the object into a dict
child_association_dict = child_association_instance.to_dict()
# create an instance of ChildAssociation from a dict
child_association_form_dict = child_association.from_dict(child_association_dict)

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