| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| name |
str |
|
|
| follower_count |
int |
|
|
| url |
str |
|
|
| logo_url |
str |
|
|
from unifapi.models.linkedin_interest_company import LinkedinInterestCompany
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinInterestCompany from a JSON string
linkedin_interest_company_instance = LinkedinInterestCompany.from_json(json)
# print the JSON string representation of the object
print(LinkedinInterestCompany.to_json())
# convert the object into a dict
linkedin_interest_company_dict = linkedin_interest_company_instance.to_dict()
# create an instance of LinkedinInterestCompany from a dict
linkedin_interest_company_from_dict = LinkedinInterestCompany.from_dict(linkedin_interest_company_dict)
[Back to Model list] [Back to API list] [Back to README]