You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Identifier for use in control transfer protocols. Restricted to alphanumeric characters, `-` and `_`.
[optional]
integration_id
str
Id of the integration that should deliver events routed by the switchboard.
[optional]
integration_type
str
Type of integration that should deliver events routed by the switchboard. If referencing an OAuth integration, the clientId issued by Sunshine Conversations during the OAuth partnership process will be the value of integrationType.
[optional]
Example
fromsunshine_conversations_client.model.switchboard_integration_webhookimportSwitchboardIntegrationWebhook# TODO update the JSON string belowjson="{}"# create an instance of SwitchboardIntegrationWebhook from a JSON stringswitchboard_integration_webhook_instance=SwitchboardIntegrationWebhook.from_json(json)
# print the JSON string representation of the objectprint(SwitchboardIntegrationWebhook.to_json())
# convert the object into a dictswitchboard_integration_webhook_dict=switchboard_integration_webhook_instance.to_dict()
# create an instance of SwitchboardIntegrationWebhook from a dictswitchboard_integration_webhook_from_dict=SwitchboardIntegrationWebhook.from_dict(switchboard_integration_webhook_dict)