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