Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1009 Bytes

File metadata and controls

30 lines (21 loc) · 1009 Bytes

LinkedinSearchLocation

Properties

Name Type Description Notes
name str
geocode str

Example

from unifapi.models.linkedin_search_location import LinkedinSearchLocation

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

# convert the object into a dict
linkedin_search_location_dict = linkedin_search_location_instance.to_dict()
# create an instance of LinkedinSearchLocation from a dict
linkedin_search_location_from_dict = LinkedinSearchLocation.from_dict(linkedin_search_location_dict)

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