Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1007 Bytes

ChildAssociationBody.md

File metadata and controls

29 lines (21 loc) · 1007 Bytes

ChildAssociationBody

Properties

Name Type Description Notes
child_id str
assoc_type str

Example

from alfresco_core_api_client.models.child_association_body import ChildAssociationBody

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

# convert the object into a dict
child_association_body_dict = child_association_body_instance.to_dict()
# create an instance of ChildAssociationBody from a dict
child_association_body_form_dict = child_association_body.from_dict(child_association_body_dict)

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