Name | Type | Description | Notes |
---|---|---|---|
data | List[ClientResponse] | ||
links | SelfLinks |
from pfruck_contabo.models.find_client_response import FindClientResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FindClientResponse from a JSON string
find_client_response_instance = FindClientResponse.from_json(json)
# print the JSON string representation of the object
print(FindClientResponse.to_json())
# convert the object into a dict
find_client_response_dict = find_client_response_instance.to_dict()
# create an instance of FindClientResponse from a dict
find_client_response_from_dict = FindClientResponse.from_dict(find_client_response_dict)