Skip to content

Commit

Permalink
[Librarian] Regenerated @ 51e40434baa37a97b298d416220c6de10d9698c4 1a…
Browse files Browse the repository at this point in the history
…c2fcf2e173acdee4491031f59034933467a82c
  • Loading branch information
twilio-dx committed Nov 15, 2024
1 parent b0d87e4 commit 2c3d5a3
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
twilio-go changelog
====================
[2024-11-15] Version 1.23.6
---------------------------
**Api**
- Added `ivr-virtual-agent-custom-voices` and `ivr-virtual-agent-genai` to `usage_record` API.
- Add open-api file tag to realtime_transcriptions

**Taskrouter**
- Add `api-tag` property to workers reservation
- Add `api-tag` property to task reservation


[2024-10-24] Version 1.23.5
---------------------------
**Conversations**
Expand Down
1 change: 1 addition & 0 deletions rest/content/v1/docs/CallToActionActionType.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Notes
**PHONE_NUMBER** | string | (value: `"PHONE_NUMBER"`)
**COPY_CODE** | string | (value: `"COPY_CODE"`)
**VOICE_CALL** | string | (value: `"VOICE_CALL"`)
**VOICE_CALL_REQUEST** | string | (value: `"VOICE_CALL_REQUEST"`)


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
9 changes: 5 additions & 4 deletions rest/content/v1/model_call_to_action_action_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ type CallToActionActionType string

// List of callToActionActionType
const (
CALLTOACTIONACTIONTYPE_URL CallToActionActionType = "URL"
CALLTOACTIONACTIONTYPE_PHONE_NUMBER CallToActionActionType = "PHONE_NUMBER"
CALLTOACTIONACTIONTYPE_COPY_CODE CallToActionActionType = "COPY_CODE"
CALLTOACTIONACTIONTYPE_VOICE_CALL CallToActionActionType = "VOICE_CALL"
CALLTOACTIONACTIONTYPE_URL CallToActionActionType = "URL"
CALLTOACTIONACTIONTYPE_PHONE_NUMBER CallToActionActionType = "PHONE_NUMBER"
CALLTOACTIONACTIONTYPE_COPY_CODE CallToActionActionType = "COPY_CODE"
CALLTOACTIONACTIONTYPE_VOICE_CALL CallToActionActionType = "VOICE_CALL"
CALLTOACTIONACTIONTYPE_VOICE_CALL_REQUEST CallToActionActionType = "VOICE_CALL_REQUEST"
)
2 changes: 1 addition & 1 deletion rest/conversations/v1/conversation_with_participants.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type CreateConversationWithParticipantsParams struct {
BindingsEmailAddress *string `json:"Bindings.Email.Address,omitempty"`
// The default name that will be used when sending outbound emails in this conversation.
BindingsEmailName *string `json:"Bindings.Email.Name,omitempty"`
// The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.
// The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.
Participant *[]string `json:"Participant,omitempty"`
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Name | Type | Description
**TimersClosed** | **string** | ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes.
**BindingsEmailAddress** | **string** | The default email address that will be used when sending outbound emails in this conversation.
**BindingsEmailName** | **string** | The default name that will be used when sending outbound emails in this conversation.
**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.
**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.

### Return type

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Name | Type | Description
**TimersClosed** | **string** | ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes.
**BindingsEmailAddress** | **string** | The default email address that will be used when sending outbound emails in this conversation.
**BindingsEmailName** | **string** | The default name that will be used when sending outbound emails in this conversation.
**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.
**Participant** | **[]string** | The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.

### Return type

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type CreateServiceConversationWithParticipantsParams struct {
BindingsEmailAddress *string `json:"Bindings.Email.Address,omitempty"`
// The default name that will be used when sending outbound emails in this conversation.
BindingsEmailName *string `json:"Bindings.Email.Name,omitempty"`
// The participant to be added to the conversation in JSON format. The parameters are as in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.
// The participant to be added to the conversation in JSON format. The JSON object attributes are as parameters in [Participant Resource](https://www.twilio.com/docs/conversations/api/conversation-participant-resource). The maximum number of participants that can be added in a single request is 10.
Participant *[]string `json:"Participant,omitempty"`
}

Expand Down

0 comments on commit 2c3d5a3

Please sign in to comment.