Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

File metadata and controls

33 lines (24 loc) · 1.04 KB

LinkedinHeadquarters

Properties

Name Type Description Notes
country str
city str
state str
address_line str
postal_code str

Example

from unifapi.models.linkedin_headquarters import LinkedinHeadquarters

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

# convert the object into a dict
linkedin_headquarters_dict = linkedin_headquarters_instance.to_dict()
# create an instance of LinkedinHeadquarters from a dict
linkedin_headquarters_from_dict = LinkedinHeadquarters.from_dict(linkedin_headquarters_dict)

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