File tree 3 files changed +4
-3
lines changed
libraries/botbuilder-schema/botbuilder/schema
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ class DeliveryModes(str, Enum):
100
100
normal = "normal"
101
101
notification = "notification"
102
102
expect_replies = "expectReplies"
103
+ ephemeral = "ephemeral"
103
104
104
105
105
106
class ContactRelationUpdateActionTypes (str , Enum ):
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ class Activity(Model):
133
133
:param delivery_mode: A delivery hint to signal to the recipient alternate
134
134
delivery paths for the activity.
135
135
The default delivery mode is "default". Possible values include: 'normal',
136
- 'notification', 'expectReplies'
136
+ 'notification', 'expectReplies', 'ephemeral'
137
137
:type delivery_mode: str or ~botframework.connector.models.DeliveryModes
138
138
:param listen_for: List of phrases and references that speech and language
139
139
priming systems should listen for
@@ -146,7 +146,7 @@ class Activity(Model):
146
146
:type semantic_action: ~botframework.connector.models.SemanticAction
147
147
:param caller_id: A string containing an IRI identifying the caller of a
148
148
bot. This field is not intended to be transmitted over the wire, but is
149
- instead populated by bots and clients based on cryptographically
149
+ instead populated by bots and clients based on cryptographically
150
150
verifiable data that asserts the identity of the callers (e.g. tokens).
151
151
:type caller_id: str
152
152
"""
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ class Activity(Model):
133
133
:param delivery_mode: A delivery hint to signal to the recipient alternate
134
134
delivery paths for the activity.
135
135
The default delivery mode is "default". Possible values include: 'normal',
136
- 'notification', 'expectReplies'
136
+ 'notification', 'expectReplies', 'ephemeral'
137
137
:type delivery_mode: str or ~botframework.connector.models.DeliveryModes
138
138
:param listen_for: List of phrases and references that speech and language
139
139
priming systems should listen for
You can’t perform that action at this time.
0 commit comments