Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.18 KB

File metadata and controls

37 lines (28 loc) · 1.18 KB

LinkedinContactInfo

Properties

Name Type Description Notes
urn str
public_identifier str
first_name str
last_name str
websites List[str]
phone_numbers List[str]
twitter List[str]
address str
wechat str

Example

from unifapi.models.linkedin_contact_info import LinkedinContactInfo

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

# convert the object into a dict
linkedin_contact_info_dict = linkedin_contact_info_instance.to_dict()
# create an instance of LinkedinContactInfo from a dict
linkedin_contact_info_from_dict = LinkedinContactInfo.from_dict(linkedin_contact_info_dict)

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