Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.08 KB

File metadata and controls

38 lines (24 loc) · 1.08 KB

EntityDataSortOrder

tb_ce_client.models.EntityDataSortOrder

Properties

Name Type Description Notes
key EntityKey [optional]
direction Direction [optional]

Referenced Types

EntityKey

Name Type Description Notes
type EntityKeyType [optional]
key str [optional]

Direction (enum)

ASC | DESC

EntityKeyType (enum)

ATTRIBUTE | CLIENT_ATTRIBUTE | SHARED_ATTRIBUTE | SERVER_ATTRIBUTE | TIME_SERIES | ENTITY_FIELD | ALARM_FIELD


Conventions

  • Package: tb_ce_client.models
  • Attribute access: obj.key, obj.name, etc.
  • Serialize: obj.model_dump() or obj.model_dump(by_alias=True) for camelCase JSON
  • Deserialize: EntityDataSortOrder.model_validate(data) or EntityDataSortOrder.model_validate_json(json_str)
  • None fields: Optional attributes default to None; accessing them never raises exceptions