From cce8425cf177640d98fc42e348353d65fa2fdaa0 Mon Sep 17 00:00:00 2001 From: Samuel Guillemet <samuel.guillemet@telecom-sudparis.eu> Date: Wed, 19 Jul 2023 10:11:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20Fixo=20typo=20in=20descri?= =?UTF-8?q?ption=20of=20model=20field?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/components/zoom_room_checked_in/schema.py | 2 +- src/app/components/zoom_room_checked_out/schema.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/zoom_room_checked_in/schema.py b/src/app/components/zoom_room_checked_in/schema.py index cdad9b3..cc20935 100644 --- a/src/app/components/zoom_room_checked_in/schema.py +++ b/src/app/components/zoom_room_checked_in/schema.py @@ -38,7 +38,7 @@ class CheckedInWebHook(BaseWebhookEvent): payload: Payload = Field( ..., - description="Contains a property with the plainToken value, the string to hash.", + description="Contains all the information about the Zoom Room that checked in.", ) diff --git a/src/app/components/zoom_room_checked_out/schema.py b/src/app/components/zoom_room_checked_out/schema.py index 66f6bc0..cb63933 100644 --- a/src/app/components/zoom_room_checked_out/schema.py +++ b/src/app/components/zoom_room_checked_out/schema.py @@ -30,7 +30,7 @@ class Payload(BaseModel): class CheckedOutWebHook(BaseWebhookEvent): - """This is the schema for the request body of the webhook for the zoomroom.checked_in event. + """This is the schema for the request body of the webhook for the zoomroom.checked_out event. Args: WebhookEvent (WebhookEvent): The base webhook model for the schema. @@ -38,7 +38,7 @@ class CheckedOutWebHook(BaseWebhookEvent): payload: Payload = Field( ..., - description="Contains a property with the plainToken value, the string to hash.", + description="Contains all the information about the Zoom Room that checked out.", ) -- GitLab