| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | str | A human-friendly name used to identify the integration. `displayName` can be unset by changing it to `null`. | [optional] |
| default_responder_id | str | The default responder ID for the integration. This is the ID of the responder that will be used to send messages to the user. For more information, refer to the <a href="https://developer.zendesk.com/documentation/conversations/messaging-platform/programmable-conversations/switchboard/#default-integration-assignment\">Switchboard guide</a>. | [optional] |
from sunshine_conversations_client.model.twilio_update import TwilioUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of TwilioUpdate from a JSON string
twilio_update_instance = TwilioUpdate.from_json(json)
# print the JSON string representation of the object
print(TwilioUpdate.to_json())
# convert the object into a dict
twilio_update_dict = twilio_update_instance.to_dict()
# create an instance of TwilioUpdate from a dict
twilio_update_from_dict = TwilioUpdate.from_dict(twilio_update_dict)