Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1010 Bytes

ChildAssociationInfo.md

File metadata and controls

29 lines (21 loc) · 1010 Bytes

ChildAssociationInfo

Properties

Name Type Description Notes
assoc_type str
is_primary bool

Example

from alfresco_core_api_client.models.child_association_info import ChildAssociationInfo

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

# convert the object into a dict
child_association_info_dict = child_association_info_instance.to_dict()
# create an instance of ChildAssociationInfo from a dict
child_association_info_form_dict = child_association_info.from_dict(child_association_info_dict)

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