def trait_list()

in wit/wit.py [0:0]


    def trait_list(self, headers=None, verbose=None):
    	"""
    	Returns list of all traits associated with your app.
    	"""
    	params = {}
    	headers = headers or {}
    	if verbose:
    		params['verbose'] = True
    	resp = req(self.logger, self.access_token, 'GET', '/traits', params, headers=headers)
    	return resp