Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/linq/types/chat_typing_indicator_started_webhook_event.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import Optional
from datetime import datetime

from .._models import BaseModel
from .shared.chat_handle import ChatHandle
from .webhook_event_type import WebhookEventType

__all__ = ["ChatTypingIndicatorStartedWebhookEvent", "Data"]
Expand All @@ -14,6 +16,9 @@ class Data(BaseModel):
chat_id: str
"""Chat identifier"""

actor_handle: Optional[ChatHandle] = None
"""Who is typing."""


class ChatTypingIndicatorStartedWebhookEvent(BaseModel):
"""Complete webhook payload for chat.typing_indicator.started events"""
Expand Down
5 changes: 5 additions & 0 deletions src/linq/types/chat_typing_indicator_stopped_webhook_event.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import Optional
from datetime import datetime

from .._models import BaseModel
from .shared.chat_handle import ChatHandle
from .webhook_event_type import WebhookEventType

__all__ = ["ChatTypingIndicatorStoppedWebhookEvent", "Data"]
Expand All @@ -14,6 +16,9 @@ class Data(BaseModel):
chat_id: str
"""Chat identifier"""

actor_handle: Optional[ChatHandle] = None
"""Who stopped typing."""


class ChatTypingIndicatorStoppedWebhookEvent(BaseModel):
"""Complete webhook payload for chat.typing_indicator.stopped events"""
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading