How to expand options : [Array] to show picklist values ?

I am using Node.js API calls to get the columns displayed in my terminal. Few of my columns are of types : Contact_List and Pick_List. I want the CLI to show me the options which are present in the dropdown in these columns. I want to expand options: [Array]


{

   index: 4,

   title: 'New Picklist Column 1',

   type: 'PICKLIST',

   options: [Array],

   validation: false,

   width: 150

  },

Answers