Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

LinkedinCertification

Properties

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

Example

from unifapi.models.linkedin_certification import LinkedinCertification

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

# convert the object into a dict
linkedin_certification_dict = linkedin_certification_instance.to_dict()
# create an instance of LinkedinCertification from a dict
linkedin_certification_from_dict = LinkedinCertification.from_dict(linkedin_certification_dict)

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