Timestamp when the model was disabled, null if active
name
string
Name of the model
description
string or null
Description of the model, null if not provided
projects
List of projects associated with this model
SDK Representations
JavaScript SDK
In the JavaScript SDK, the Model object uses snake_case naming for some fields, translating from the API's camelCase:
{
id: 123,
created_at: Date("2025-01-31T10:00:00.000Z"), // Converted to Date object
updated_at: Date("2025-01-31T10:00:00.000Z"), // Converted to Date object
disabled_at: null,
name: "Production Optimization",
description: "Optimization model for production planning",
projects: [
// Project objects are also instantiated with their constructor
Project({
id: 456,
// ... other project properties
})
]
}
Python SDK
The Python SDK also uses snake_case naming and converts timestamps to datetime objects:
Model(
id=123,
created_at=datetime(2025, 1, 31, 10, 0, 0), # Converted to datetime object
updated_at=datetime(2025, 1, 31, 10, 0, 0), # Converted to datetime object
disabled_at=None,
name="Production Optimization",
description="Optimization model for production planning",
projects=[
# List of Project objects
Project(
id=456,
# ... other project properties
)
]
)
PHP SDK
The PHP SDK maintains camelCase naming to match the API and converts timestamps to DateTimeImmutable objects:
Model(
id: 123,
createdAt: DateTimeImmutable("2025-01-31T10:00:00.000Z"), // DateTimeImmutable object
updatedAt: DateTimeImmutable("2025-01-31T10:00:00.000Z"), // DateTimeImmutable object
disabledAt: null,
name: "Production Optimization",
description: "Optimization model for production planning",
projects: [
// Array of Project objects
Project(
id: 456,
// ... other project properties
)
]
)