Skip to content
Snippets Groups Projects
Unverified Commit cce8425c authored by Samuel Guillemet's avatar Samuel Guillemet
Browse files

:bug: FIX: Fixo typo in description of model field

parent b9788ed1
No related branches found
No related tags found
1 merge request!7🚀 RELEASE: Bump to 0.2.0
......@@ -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.",
)
......
......@@ -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.",
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment