28 lines
937 B
Markdown
28 lines
937 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [MessagingMessage](./calckey-js.entities.messagingmessage.md)
|
|
|
|
## entities.MessagingMessage type
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
export declare type MessagingMessage = {
|
|
id: ID;
|
|
createdAt: DateString;
|
|
file: DriveFile | null;
|
|
fileId: DriveFile["id"] | null;
|
|
isRead: boolean;
|
|
reads: User["id"][];
|
|
text: string | null;
|
|
user: User;
|
|
userId: User["id"];
|
|
recipient?: User | null;
|
|
recipientId: User["id"] | null;
|
|
group?: UserGroup | null;
|
|
groupId: UserGroup["id"] | null;
|
|
};
|
|
```
|
|
**References:** [ID](./calckey-js.entities.id.md)<!-- -->, [DateString](./calckey-js.entities.datestring.md)<!-- -->, [DriveFile](./calckey-js.entities.drivefile.md)<!-- -->, [User](./calckey-js.entities.user.md)<!-- -->, [UserGroup](./calckey-js.entities.usergroup.md)
|
|
|