docs/UnityUpdate.md in sunshine-conversations-client-12.5.1 vs docs/UnityUpdate.md in sunshine-conversations-client-12.6.0
- old
+ new
@@ -3,17 +3,19 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**display_name** | **String** | A human-friendly name used to identify the integration. `displayName` can be unset by changing it to `null`. | [optional]
+**default_responder_id** | **String** | 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 <a href=\"https://docs.smooch.io/guide/switchboard/#per-channel-default-responder\">Per-channel default responder</a> guide. | [optional]
**can_user_create_more_conversations** | **Boolean** | Allows users to create more than one conversation on the Unity integration. | [optional]
## Code Sample
```ruby
require 'SunshineConversationsClient'
instance = SunshineConversationsClient::UnityUpdate.new(display_name: My awesome integration,
+ default_responder_id: null,
can_user_create_more_conversations: null)
```