I found how to get all the columns from a give view:
SELECT *
FROM VIEW_COLUMNS
WHERE SCHEMA_NAME = 'TEST' AND
VIEW_NAME = 'test/TestView'
But that doesn't give me if the column is hidden or not... Is there any other place like VIEW_COLUMNS where I can find that info?