Retrieves a list of all models in a project. This operation supports pagination. You can filter out all models without a published revision.
A list of models.
The response for a failed request.
const models3D = await client.models3D.list({ published: true });
{- "items": [
- {
- "name": "My Model",
- "id": 1000,
- "createdTime": 0,
- "dataSetId": 1,
- "space": "string",
- "metadata": {
- "property1": "string",
- "property2": "string"
}
}
], - "nextCursor": "string"
}