Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.4 KB

File metadata and controls

30 lines (21 loc) · 1.4 KB

TwilioUpdate

Properties

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=&quot;https://developer.zendesk.com/documentation/conversations/messaging-platform/programmable-conversations/switchboard/#default-integration-assignment\&quot;&gt;Switchboard guide</a>. [optional]

Example

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)

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