Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 970 Bytes

File metadata and controls

29 lines (20 loc) · 970 Bytes

LinkGroupResponse

Properties

Name Type Description Notes
link_groups List[LinkGroup] [optional]

Example

from wordlift_client.models.link_group_response import LinkGroupResponse

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

# convert the object into a dict
link_group_response_dict = link_group_response_instance.to_dict()
# create an instance of LinkGroupResponse from a dict
link_group_response_from_dict = LinkGroupResponse.from_dict(link_group_response_dict)

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