Skip to content

Commit

Permalink
[Librarian] Regenerated @ 8a2e951f4fb6857d0989e8d2fded7c757e2ef2d4
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Jan 26, 2022
1 parent e2ea183 commit 1ae9efb
Show file tree
Hide file tree
Showing 21 changed files with 3,389 additions and 23 deletions.
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
twilio-java changelog
=====================

[2022-01-26] Version 8.25.1
---------------------------
**Insights**
- Added new endpoint to fetch Conference Participant Summary
- Added new endpoint to fetch Conference Summary

**Messaging**
- Add government_entity parameter to brand apis

**Verify**
- Add Access Token fetch endpoint to retrieve a previously created token.
- Add Access Token payload to the Access Token creation endpoint, including a unique Sid, so it's addressable while it's TTL is valid.


[2022-01-12] Version 8.25.0
---------------------------
**Library - Feature**
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/twilio/rest/flexapi/v1/FlexFlowCreator.java
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,12 @@ public FlexFlowCreator setJanitorEnabled(final Boolean janitorEnabled) {
}

/**
* The number of times to retry the webhook if the first attempt fails. Can be
* an integer between 0 and 3 (inclusive), default is 3. Optional when
* `integrationType` is `external`, not applicable otherwise..
* The number of times to retry the Studio Flow or webhook in case of failure.
* Takes integer values from 0 to 3 with the default being 3. Optional when
* `integrationType` is `studio` or `external`, not applicable otherwise..
*
* @param integrationRetryCount The number of times to retry the webhook if the
* first attempt fails
* @param integrationRetryCount The number of times to retry the Studio Flow or
* webhook in case of failure
* @return this
*/
public FlexFlowCreator setIntegrationRetryCount(final Integer integrationRetryCount) {
Expand Down
19 changes: 12 additions & 7 deletions src/main/java/com/twilio/rest/flexapi/v1/FlexFlowUpdater.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,13 @@ public FlexFlowUpdater setChatServiceSid(final String chatServiceSid) {
}

/**
* The channel type. Can be: `web`, `facebook`, `sms`, `whatsapp`, `line` or
* `custom`..
* The channel type. One of `web`, `facebook`, `sms`, `whatsapp`, `line` or
* `custom`. By default, Studio’s Send to Flex widget passes it on to the Task
* attributes for Tasks created based on this Flex Flow. The Task attributes
* will be used by the Flex UI to render the respective Task as appropriate
* (applying channel-specific design and length limits). If `channelType` is
* `facebook`, `whatsapp` or `line`, the Send to Flex widget should set the Task
* Channel to Programmable Chat..
*
* @param channelType The channel type
* @return this
Expand Down Expand Up @@ -255,12 +260,12 @@ public FlexFlowUpdater setJanitorEnabled(final Boolean janitorEnabled) {
}

/**
* The number of times to retry the webhook if the first attempt fails. Can be
* an integer between 0 and 3 (inclusive), default is 3. Optional when
* `integrationType` is `external`, not applicable otherwise..
* The number of times to retry the Studio Flow or webhook in case of failure.
* Takes integer values from 0 to 3 with the default being 3. Optional when
* `integrationType` is `studio` or `external`, not applicable otherwise..
*
* @param integrationRetryCount The number of times to retry the webhook if the
* first attempt fails
* @param integrationRetryCount The number of times to retry the Studio Flow or
* webhook in case of failure
* @return this
*/
public FlexFlowUpdater setIntegrationRetryCount(final Integer integrationRetryCount) {
Expand Down
Loading

0 comments on commit 1ae9efb

Please sign in to comment.