Skip to content

Commit b858999

Browse files
authored
fix: add missing tech_info attribute to v2.0.1 EventDataType (#504)
The V2.0.1 datatype `EventDataType` is missing an optional string attribute for techInfo.
1 parent 02a532d commit b858999

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ocpp/v201/datatypes.py

+1
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ class EventDataType:
395395
variable: VariableType
396396
cause: Optional[int] = None
397397
tech_code: Optional[str] = None
398+
tech_info: Optional[str] = None
398399
cleared: Optional[bool] = None
399400
transaction_id: Optional[str] = None
400401
variable_monitoring_id: Optional[int] = None

0 commit comments

Comments
 (0)