docs/ConversationAgentAuthResponse.md in ultracart_api-4.0.37.rc vs docs/ConversationAgentAuthResponse.md in ultracart_api-4.0.38.rc
- old
+ new
@@ -2,27 +2,25 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **conversation_participant_arn** | **String** | | [optional] |
-| **conversation_participant_name** | **String** | | [optional] |
-| **jwt** | **String** | | [optional] |
-| **merchant_id** | **String** | | [optional] |
-| **twilio_phone_numbers** | **Array<String>** | | [optional] |
-| **websocket_url** | **String** | | [optional] |
+| **agent_auth** | [**ConversationAgentAuth**](ConversationAgentAuth.md) | | [optional] |
+| **error** | [**Error**](Error.md) | | [optional] |
+| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
+| **success** | **Boolean** | Indicates if API call was successful | [optional] |
+| **warning** | [**Warning**](Warning.md) | | [optional] |
## Example
```ruby
require 'ultracart_api'
instance = UltracartClient::ConversationAgentAuthResponse.new(
- conversation_participant_arn: null,
- conversation_participant_name: null,
- jwt: null,
- merchant_id: null,
- twilio_phone_numbers: null,
- websocket_url: null
+ agent_auth: null,
+ error: null,
+ metadata: null,
+ success: null,
+ warning: null
)
```