Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

LinkedinInterestGroup

Properties

Name Type Description Notes
id str
name str
url str
logo_url str

Example

from unifapi.models.linkedin_interest_group import LinkedinInterestGroup

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

# convert the object into a dict
linkedin_interest_group_dict = linkedin_interest_group_instance.to_dict()
# create an instance of LinkedinInterestGroup from a dict
linkedin_interest_group_from_dict = LinkedinInterestGroup.from_dict(linkedin_interest_group_dict)

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