| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| name |
str |
|
|
| description |
str |
|
|
| rules |
str |
|
|
| member_count |
int |
|
|
| is_public |
bool |
|
|
| cover_image_url |
str |
|
|
| logo_url |
str |
|
|
from unifapi.models.linkedin_group import LinkedinGroup
# TODO update the JSON string below
json = "{}"
# create an instance of LinkedinGroup from a JSON string
linkedin_group_instance = LinkedinGroup.from_json(json)
# print the JSON string representation of the object
print(LinkedinGroup.to_json())
# convert the object into a dict
linkedin_group_dict = linkedin_group_instance.to_dict()
# create an instance of LinkedinGroup from a dict
linkedin_group_from_dict = LinkedinGroup.from_dict(linkedin_group_dict)
[Back to Model list] [Back to API list] [Back to README]