Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 526 Bytes

File metadata and controls

27 lines (18 loc) · 526 Bytes

Upgrade Guide

After 5.0.0 all MINOR and MAJOR version bumps will have upgrade notes posted here.

[2017-05-22] 5.4.x to 5.5.x

CHANGED - Rename room Recordings class to RoomRecordings

Rationale

This was done to avoid a class name conflict with another resource.

5.4.x

using Twilio.Rest.Video.V1.Room;

var roomRecordings = RecordingResource.Read();

5.5.x

using Twilio.Rest.Video.V1.Room;

var roomRecordings = RoomRecordingResource.Read();