public SocialHttpResponse GetFolderInfo(BoxGetFolderOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoAuthenticatedGetRequest("https://api.box.com/2.0/folders/" + options.Id, options);
 }
 public BoxGetFolderInfoResponse GetFolderInfo(BoxGetFolderOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return BoxGetFolderInfoResponse.ParseResponse(Raw.GetFolderInfo(options));
 }