From 3b63ed523ea232e6f1a262d9987806bca9c27a69 Mon Sep 17 00:00:00 2001
From: Ruben <rha104@uib.no>
Date: Fri, 11 Mar 2022 10:31:39 +0100
Subject: [PATCH] Made two batch fields optional, because sometimes when you
 retrieve a batch...

it will not fill these field, because they are not yet available, and therefore it would fail when parsing the data
---
 setra_client/models.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setra_client/models.py b/setra_client/models.py
index 6cc9a31..2ca0f56 100644
--- a/setra_client/models.py
+++ b/setra_client/models.py
@@ -194,10 +194,10 @@ class CompleteBatch(BaseModel):
     """Model for the /batch_complete/<id> endpoint"""
     created: datetime.datetime
     batchid: str
-    period: int
+    period: Optional[int]
     interface: str
     client: str
-    vouchertype: str
+    vouchertype: Optional[str]
     batch_validated_ok_date: Optional[datetime.datetime]
     batch_rejected_code: Optional[str]
     sent_date: Optional[datetime.datetime]
-- 
GitLab