Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 990 Bytes

File metadata and controls

32 lines (23 loc) · 990 Bytes

LinkedinLocation

Properties

Name Type Description Notes
country str
country_code str
city str
postal_code str

Example

from unifapi.models.linkedin_location import LinkedinLocation

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

# convert the object into a dict
linkedin_location_dict = linkedin_location_instance.to_dict()
# create an instance of LinkedinLocation from a dict
linkedin_location_from_dict = LinkedinLocation.from_dict(linkedin_location_dict)

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