Source code for nisystemlink.clients.assetmanagement.models._asset_utilization_history_item

from datetime import datetime

from nisystemlink.clients.core._uplink._json_model import JsonModel


[docs]class AssetUtilizationHistoryItem(JsonModel): """Model representing an asset utilization history record.""" utilization_identifier: str | None = None """String representing the unique identifier of an asset utilization history record.""" asset_identifier: str | None = None """String representing the unique identifier of an asset.""" minion_id: str | None = None """Identifier of the minion where the asset is located.""" category: str | None = None """String representing the utilization task category.""" task_name: str | None = None """String representing the name of the task.""" user_name: str | None = None """String representing the name of the operator who utilized the asset.""" start_timestamp: datetime | None = None """A date time value which can be used to specify the start of an utilization.""" end_timestamp: datetime | None = None """A date time value which can be used to specify the end of an utilization.""" heartbeat_timestamp: datetime | None = None """A date time value which can be used to specify the heartbeat of an utilization."""