Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

APPersonFollowItem

Properties

Name Type Description Notes
actor_id str [optional]
note str [optional]
original_item str [optional]
original_url str [optional]

Example

from openapi_client.models.ap_person_follow_item import APPersonFollowItem

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

# convert the object into a dict
ap_person_follow_item_dict = ap_person_follow_item_instance.to_dict()
# create an instance of APPersonFollowItem from a dict
ap_person_follow_item_from_dict = APPersonFollowItem.from_dict(ap_person_follow_item_dict)

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