List custom object types
from lightfield import Lightfield
client = Lightfield(
api_key="My API Key",
)
object_list_definitions_response = client.object.list_definitions()
print(object_list_definitions_response.data){
"data": [
{
"label": "label",
"objectType": "objectType"
}
]
}Returns Examples
{
"data": [
{
"label": "label",
"objectType": "objectType"
}
]
}