After 7.4.0 all MINOR and MAJOR version bumps will have upgrade notes
posted here.
- `src/main/java/com/twilio/rest/video/v1/room/Recording.java`
- `src/main/java/com/twilio/rest/video/v1/room/RecordingFetcher.java`
- `src/main/java/com/twilio/rest/video/v1/room/RecordingReader.java`
- `src/test/java/com/twilio/rest/video/v1/room/RecordingTest.java`
// 7.10.x
Recording.fetcher();
Recording.reader();// 7.11.x
RoomRecording.fetcher();
RoomRecording.reader();There already exists a getter for the resource
src/main/java/com/twilio/rest/lookups/v1/PhoneNumber.java
// 7.9.x
resource.getSid();// 7.10.x
resource.getPhoneNumber().toString();src/main/java/com/twilio/rest/pricing/v1/messaging/Country.javasrc/main/java/com/twilio/rest/pricing/v1/phonenumber/Country.javasrc/main/java/com/twilio/rest/pricing/v1/voice/Country.java
// 7.9.x
resource.getSid();// 7.10.x
resource.getIsoCountry();src/main/java/com/twilio/rest/pricing/v1/voice/Number.java
// 7.9.x
resource.getSid();// 7.10.x
resource.getNumber().toString();- Updating
friendlyNameis now done through a setter instead of the constructor
The friendlyName parameter is optional when updating TaskRouter Activities
- TaskRouter Activities
Activity.updater("WS123", "AC123", "friendlyName").update();Activity.updater("WS123", "AC123").setFriendlyName("friendlyName").update();Filtering by Tasks exposes the ability to filter by multiple status. The library is being updated to support this feature
Task.reader("WS123").setAssignmentStatus(Task.Status.ASSIGNED).read();Task.reader("WS123").setAssignmentStatus(Lists.newArrayList(
Task.Status.ASSIGNED.toString(),
Task.Status.CANCELED.toString()
)).read();