NamedModel
NamedModel class that contains some common fields of Datagrok entities.
Attributes
| Name | Type | Description |
|---|---|---|
| name | Optional[str] | Internal name of the model, used as an identifier. |
| id | Optional[str] | Unique identifier for the model instance. Can be None for new instances. |
| friendly_name | Optional[str] | Human-readable name for display purposes. Defaults to None. |
| created_on | Optional[datetime] | Timestamp indicating when the model was created. Defaults to None. |
| updated_on | Optional[datetime] | Timestamp indicating when the model was last updated. Defaults to None. |
| namespace | Optional[str] | Optional namespace prefix to distinguish models with the same name. Defaults to None. |
Methods
__init__()
grok_name()
to_dict()
Convert the model to a dictionary representation.