File tree Expand file tree Collapse file tree
MangoAPI.Client/src/app/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export class Message {
1616 inReplyToText : string | null | undefined ;
1717
1818 constructor (
19+ messageId : string ,
1920 userId : string ,
2021 chatId : string ,
2122 userDisplayName : string ,
@@ -27,6 +28,7 @@ export class Message {
2728 inReplyToUser : string | null ,
2829 inReplyToText : string | null
2930 ) {
31+ this . messageId = messageId ;
3032 this . userId = userId ;
3133 this . chatId = chatId ;
3234 this . userDisplayName = userDisplayName ;
Original file line number Diff line number Diff line change 11import { BaseResponse } from './BaseResponse' ;
2- import { Message } from '../models/Message' ;
32
43export interface SendMessageResponse extends BaseResponse {
5- messageModel : Message ;
4+ newMessageId : string ;
5+ attachmentUrl : string ;
6+ createdAt : string ;
67}
You can’t perform that action at this time.
0 commit comments