List feature types

async AsyncCogniteClient.geospatial.list_feature_types() FeatureTypeList

List feature types.

Returns:

List of feature types

Return type:

FeatureTypeList

Examples

Iterate over feature type definitions:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> for feature_type in client.geospatial.list_feature_types():
...     feature_type  # do something with the feature type definition