I am using the Smartsheet 2.0 API with the C# SDK. I am trying to iterate through all of the sheets in folder. However, I am unable to find the API code to do so.
I tried FolderSheetResources interface, but a List() method isn't even implemented like on other interfaces; for example, WorkSpaceFolderResources.
smartsheetClient.WorkspaceResources.FolderResources.ListFolders() // Method exists.
smartsheetClient.FolderResources.SheetResources.ListSheets(); // Method doesn't exist.
And I have also tried the Sheets property of the Folder object.
folder.Sheets; // Always returns null.
Does anyone know how to list all sheets inside a folder?