We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfc0a0b commit b15601aCopy full SHA for b15601a
1 file changed
src/definition/rooms/IRoom.ts
@@ -20,7 +20,12 @@ export interface IRoom {
20
updatedAt?: Date;
21
lastModifiedAt?: Date;
22
description?: string;
23
+ /** @deprecated */
24
customFields?: { [key: string]: any };
25
+ custom?: ICustomFields;
26
parentRoom?: IRoom;
27
livechatData?: { [key: string]: any };
28
}
29
+
30
+// eslint-disable-next-line @typescript-eslint/no-empty-interface
31
+interface ICustomFields {}
0 commit comments