| Name | Type | Description | Notes |
|---|---|---|---|
| text | str | ||
| var_date | str | ||
| relationship | str | ||
| recommender | LinkedinRecommendationRecommender |
from unifapi.models.linkedin_recommendation import LinkedinRecommendation
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinRecommendation from a JSON string
linkedin_recommendation_instance = LinkedinRecommendation.from_json(json)
# print the JSON string representation of the object
print(LinkedinRecommendation.to_json())
# convert the object into a dict
linkedin_recommendation_dict = linkedin_recommendation_instance.to_dict()
# create an instance of LinkedinRecommendation from a dict
linkedin_recommendation_from_dict = LinkedinRecommendation.from_dict(linkedin_recommendation_dict)