| Name | Type | Description | Notes |
|---|---|---|---|
| match_criteria | MatchCriteria | ||
| confirmation | Confirmation | ||
| target | Target |
from sunshine_conversations_client.model.client_create import ClientCreate
# TODO update the JSON string below
json = "{}"
# create an instance of ClientCreate from a JSON string
client_create_instance = ClientCreate.from_json(json)
# print the JSON string representation of the object
print(ClientCreate.to_json())
# convert the object into a dict
client_create_dict = client_create_instance.to_dict()
# create an instance of ClientCreate from a dict
client_create_from_dict = ClientCreate.from_dict(client_create_dict)