Name |
Type |
Description |
Notes |
assoc_type |
str |
|
|
from alfresco_core_api_client.models.association_info import AssociationInfo
# TODO update the JSON string below
json = "{}"
# create an instance of AssociationInfo from a JSON string
association_info_instance = AssociationInfo.from_json(json)
# print the JSON string representation of the object
print AssociationInfo.to_json()
# convert the object into a dict
association_info_dict = association_info_instance.to_dict()
# create an instance of AssociationInfo from a dict
association_info_form_dict = association_info.from_dict(association_info_dict)
[Back to Model list] [Back to API list] [Back to README]