Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 955 Bytes

File metadata and controls

32 lines (23 loc) · 955 Bytes

LinkedinHonor

Properties

Name Type Description Notes
title str
issued_by str
issued_at str
associated_with str

Example

from unifapi.models.linkedin_honor import LinkedinHonor

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

# convert the object into a dict
linkedin_honor_dict = linkedin_honor_instance.to_dict()
# create an instance of LinkedinHonor from a dict
linkedin_honor_from_dict = LinkedinHonor.from_dict(linkedin_honor_dict)

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