| Name |
Type |
Description |
Notes |
| country |
str |
|
|
| city |
str |
|
|
| state |
str |
|
|
| address_line |
str |
|
|
| postal_code |
str |
|
|
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]