Name | Type | Description | Notes |
---|---|---|---|
pagination | PaginationMeta | Data about pagination like how many results, pages, page size. | |
data | List[TagResponse] | ||
links | Links |
from pfruck_contabo.models.list_tag_response import ListTagResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListTagResponse from a JSON string
list_tag_response_instance = ListTagResponse.from_json(json)
# print the JSON string representation of the object
print(ListTagResponse.to_json())
# convert the object into a dict
list_tag_response_dict = list_tag_response_instance.to_dict()
# create an instance of ListTagResponse from a dict
list_tag_response_from_dict = ListTagResponse.from_dict(list_tag_response_dict)