Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.52 KB

File metadata and controls

31 lines (22 loc) · 1.52 KB

MessengerUpdate

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]
page_access_token str A Facebook Page Access Token. [optional]

Example

from sunshine_conversations_client.model.messenger_update import MessengerUpdate

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

# convert the object into a dict
messenger_update_dict = messenger_update_instance.to_dict()
# create an instance of MessengerUpdate from a dict
messenger_update_from_dict = MessengerUpdate.from_dict(messenger_update_dict)

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