Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 842 Bytes

File metadata and controls

29 lines (17 loc) · 842 Bytes

EntityKey

tb_ce_client.models.EntityKey

Properties

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

Referenced Types

EntityKeyType (enum)

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


Conventions

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