@@ -27,7 +27,7 @@ class Activity(AgentsModel):
2727 'endOfConversation', 'event', 'invoke', 'deleteUserData', 'messageUpdate',
2828 'messageDelete', 'installationUpdate', 'messageReaction', 'suggestion',
2929 'trace', 'handoff'
30- :type type: str or ~microsoft_agents.protocols.models .ActivityTypes
30+ :type type: str or ~microsoft_agents.activity .ActivityTypes
3131 :param id: Contains an ID that uniquely identifies the activity on the channel.
3232 :type id: str
3333 :param timestamp: Contains the date and time that the message was sent, in UTC, expressed in ISO-8601 format.
@@ -43,23 +43,23 @@ class Activity(AgentsModel):
4343 :param channel_id: Contains an ID that uniquely identifies the channel. Set by the channel.
4444 :type channel_id: str
4545 :param from_property: Identifies the sender of the message.
46- :type from_property: ~microsoft_agents.protocols.models .ChannelAccount
46+ :type from_property: ~microsoft_agents.activity .ChannelAccount
4747 :param conversation: Identifies the conversation to which the activity belongs.
48- :type conversation: ~microsoft_agents.protocols.models .ConversationAccount
48+ :type conversation: ~microsoft_agents.activity .ConversationAccount
4949 :param recipient: Identifies the recipient of the message.
50- :type recipient: ~microsoft_agents.protocols.models .ChannelAccount
50+ :type recipient: ~microsoft_agents.activity .ChannelAccount
5151 :param text_format: Format of text fields Default:markdown. Possible values include: 'markdown', 'plain', 'xml'
52- :type text_format: str or ~microsoft_agents.protocols.models .TextFormatTypes
52+ :type text_format: str or ~microsoft_agents.activity .TextFormatTypes
5353 :param attachment_layout: The layout hint for multiple attachments. Default: list. Possible values include: 'list', 'carousel'
54- :type attachment_layout: str or ~microsoft_agents.protocols.models .AttachmentLayoutTypes
54+ :type attachment_layout: str or ~microsoft_agents.activity .AttachmentLayoutTypes
5555 :param members_added: The collection of members added to the conversation.
56- :type members_added: list[~microsoft_agents.protocols.models .ChannelAccount]
56+ :type members_added: list[~microsoft_agents.activity .ChannelAccount]
5757 :param members_removed: The collection of members removed from the conversation.
58- :type members_removed: list[~microsoft_agents.protocols.models .ChannelAccount]
58+ :type members_removed: list[~microsoft_agents.activity .ChannelAccount]
5959 :param reactions_added: The collection of reactions added to the conversation.
60- :type reactions_added: list[~microsoft_agents.protocols.models .MessageReaction]
60+ :type reactions_added: list[~microsoft_agents.activity .MessageReaction]
6161 :param reactions_removed: The collection of reactions removed from the conversation.
62- :type reactions_removed: list[~microsoft_agents.protocols.models .MessageReaction]
62+ :type reactions_removed: list[~microsoft_agents.activity .MessageReaction]
6363 :param topic_name: The updated topic name of the conversation.
6464 :type topic_name: str
6565 :param history_disclosed: Indicates whether the prior history of the channel is disclosed.
@@ -74,15 +74,15 @@ class Activity(AgentsModel):
7474 :type speak: str
7575 :param input_hint: Indicates whether your agent is accepting, expecting, or ignoring user input after the message is delivered to the client.
7676 Possible values include: 'acceptingInput', 'ignoringInput', 'expectingInput'
77- :type input_hint: str or ~microsoft_agents.protocols.models .InputHints
77+ :type input_hint: str or ~microsoft_agents.activity .InputHints
7878 :param summary: The text to display if the channel cannot render cards.
7979 :type summary: str
8080 :param suggested_actions: The suggested actions for the activity.
81- :type suggested_actions: ~microsoft_agents.protocols.models .SuggestedActions
81+ :type suggested_actions: ~microsoft_agents.activity .SuggestedActions
8282 :param attachments: Attachments
83- :type attachments: list[~microsoft_agents.protocols.models .Attachment]
83+ :type attachments: list[~microsoft_agents.activity .Attachment]
8484 :param entities: Represents the entities that were mentioned in the message.
85- :type entities: list[~microsoft_agents.protocols.models .Entity]
85+ :type entities: list[~microsoft_agents.activity .Entity]
8686 :param channel_data: Contains channel-specific content.
8787 :type channel_data: object
8888 :param action: Indicates whether the recipient of a contactRelationUpdate was added or removed from the sender's contact list.
@@ -98,23 +98,23 @@ class Activity(AgentsModel):
9898 :param name: The name of the operation associated with an invoke or event activity.
9999 :type name: str
100100 :param relates_to: A reference to another conversation or activity.
101- :type relates_to: ~microsoft_agents.protocols.models .ConversationReference
101+ :type relates_to: ~microsoft_agents.activity .ConversationReference
102102 :param code: The a code for endOfConversation activities that indicates why the conversation ended. Possible values include: 'unknown',
103103 'completedSuccessfully', 'userCancelled', 'botTimedOut', 'botIssuedInvalidMessage', 'channelFailed'
104- :type code: str or ~microsoft_agents.protocols.models .EndOfConversationCodes
104+ :type code: str or ~microsoft_agents.activity .EndOfConversationCodes
105105 :param expiration: The time at which the activity should be considered to be "expired" and should not be presented to the recipient.
106106 :type expiration: datetime
107107 :param importance: The importance of the activity. Possible values include: 'low', 'normal', 'high'
108- :type importance: str or ~microsoft_agents.protocols.models .ActivityImportance
108+ :type importance: str or ~microsoft_agents.activity .ActivityImportance
109109 :param delivery_mode: A delivery hint to signal to the recipient alternate delivery paths for the activity.
110110 The default delivery mode is "default". Possible values include: 'normal', 'notification', 'expectReplies', 'ephemeral'
111- :type delivery_mode: str or ~microsoft_agents.protocols.models .DeliveryModes
111+ :type delivery_mode: str or ~microsoft_agents.activity .DeliveryModes
112112 :param listen_for: List of phrases and references that speech and language priming systems should listen for
113113 :type listen_for: list[str]
114114 :param text_highlights: The collection of text fragments to highlight when the activity contains a ReplyToId value.
115- :type text_highlights: list[~microsoft_agents.protocols.models .TextHighlight]
115+ :type text_highlights: list[~microsoft_agents.activity .TextHighlight]
116116 :param semantic_action: An optional programmatic action accompanying this request
117- :type semantic_action: ~microsoft_agents.protocols.models .SemanticAction
117+ :type semantic_action: ~microsoft_agents.activity .SemanticAction
118118 :param caller_id: A string containing an IRI identifying the caller of an agent. This field is not intended to be transmitted over the wire,
119119 but is instead populated by agents and clients based on cryptographically verifiable data that asserts the identity of the callers (e.g. tokens).
120120 :type caller_id: str
0 commit comments