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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ChannelAccount(AgentsModel):

model_config = ConfigDict(extra="allow")

id: NonEmptyString
id: NonEmptyString = None
name: str = None
aad_object_id: NonEmptyString = None
role: NonEmptyString = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ConversationReference(AgentsModel):
conversation: ConversationAccount
channel_id: NonEmptyString
locale: Optional[NonEmptyString] = None
service_url: NonEmptyString
service_url: NonEmptyString = None

def get_continuation_activity(self) -> "Activity": # type: ignore
from .activity import Activity
Expand Down