cb10-sdk
Version:
Cybozu Office 10 SDK for Node.js
22 lines (21 loc) • 411 B
TypeScript
export interface Comment {
followId: number;
createdBy: string;
createdAt: string;
content?: string;
body?: string;
hasUpdated: boolean;
}
export interface MessageBody {
subject: string;
content: string;
}
export interface Message {
mDBID: number;
mDID: number;
body: MessageBody;
comments: Comment[];
}
export interface Notification {
messages: Message[];
}