public void PutRecordingIdTest()
        {
            // TODO: add unit test for the method 'PutRecordingId'
            string        recordingId = null; // TODO: replace null with proper value
            UserRecording body        = null; // TODO: replace null with proper value
            string        expand      = null; // TODO: replace null with proper value
            var           response    = instance.PutRecordingId(recordingId, body, expand);

            Assert.IsInstanceOf <UserRecording> (response, "response is UserRecording");
        }
 public void Init()
 {
     instance = new UserRecording();
 }