From 66d05b6d8af4df25ee5b4970fc2bb800d40d03d4 Mon Sep 17 00:00:00 2001 From: Jochen Mattes Date: Mon, 12 May 2025 14:01:41 +0200 Subject: [PATCH] adds notes to meta data response --- werk24/models/v2/responses.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/werk24/models/v2/responses.py b/werk24/models/v2/responses.py index f10b697c..05ee8287 100644 --- a/werk24/models/v2/responses.py +++ b/werk24/models/v2/responses.py @@ -17,6 +17,7 @@ Identifier, Language, MaterialCombination, + Note, PrimaryProcessUnion, ProjectionMethod, Radius, @@ -188,6 +189,10 @@ class ResponseMetaDataComponentDrawing(Response): None, description="Weight of the component.", ) + notes: list[Note] = Field( + default_factory=list, + description="List of all notes in the drawing.", + ) class ResponseRedaction(Response):