Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -1081,6 +1081,9 @@ model AcsChatMessageEventBaseProperties extends AcsChatEventBaseProperties {
/** The display name of the sender */
senderDisplayName?: string;

/** The Sequence id of the message */
sequenceId?: int64;

/** The original compose time of the message */
@madeRequired(ServiceApiVersions.v2024_01_01)
composeTime: utcDateTime;
Expand Down Expand Up @@ -1198,6 +1201,9 @@ model AcsChatMessageEventInThreadBaseProperties
/** The display name of the sender */
senderDisplayName?: string;

/** The Sequence id of the message */
sequenceId?: int64;

/** The original compose time of the message */
@madeRequired(ServiceApiVersions.v2024_01_01)
composeTime: utcDateTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,11 @@
"type": "string",
"description": "The display name of the sender"
},
"sequenceId": {
"type": "integer",
"format": "int64",
"description": "The Sequence id of the message"
},
"composeTime": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -499,6 +504,11 @@
"type": "string",
"description": "The display name of the sender"
},
"sequenceId": {
"type": "integer",
"format": "int64",
"description": "The Sequence id of the message"
},
"composeTime": {
"type": "string",
"format": "date-time",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,11 @@
"type": "string",
"description": "The display name of the sender"
},
"sequenceId": {
"type": "integer",
"format": "int64",
"description": "The Sequence id of the message"
},
"composeTime": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -510,6 +515,11 @@
"type": "string",
"description": "The display name of the sender"
},
"sequenceId": {
"type": "integer",
"format": "int64",
"description": "The Sequence id of the message"
},
"composeTime": {
"type": "string",
"format": "date-time",
Expand Down