Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

LinkedinRecommendation

Properties

Name Type Description Notes
text str
var_date str
relationship str
recommender LinkedinRecommendationRecommender

Example

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)

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