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

InstagramUpdate

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.instagram_update import InstagramUpdate

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

# convert the object into a dict
instagram_update_dict = instagram_update_instance.to_dict()
# create an instance of InstagramUpdate from a dict
instagram_update_from_dict = InstagramUpdate.from_dict(instagram_update_dict)

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