Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

ClientResponse

Properties

Name Type Description Notes
client Client [optional]

Example

from sunshine_conversations_client.model.client_response import ClientResponse

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

# convert the object into a dict
client_response_dict = client_response_instance.to_dict()
# create an instance of ClientResponse from a dict
client_response_from_dict = ClientResponse.from_dict(client_response_dict)

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