Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1004 Bytes

File metadata and controls

30 lines (21 loc) · 1004 Bytes

LinkedinSearchIndustry

Properties

Name Type Description Notes
id str
name str

Example

from unifapi.models.linkedin_search_industry import LinkedinSearchIndustry

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

# convert the object into a dict
linkedin_search_industry_dict = linkedin_search_industry_instance.to_dict()
# create an instance of LinkedinSearchIndustry from a dict
linkedin_search_industry_from_dict = LinkedinSearchIndustry.from_dict(linkedin_search_industry_dict)

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