UNPKG

cb10-sdk

Version:

Cybozu Office 10 SDK for Node.js

21 lines (20 loc) 649 B
import Transport from '../../common/Transport'; import { Notification } from './models'; /** * Cybozu Office 10のユーザー名簿機能にアクセスするためのクライアントクラス * * このクラスは通知一覧の取得などの機能を提供します。 */ export default class NotificationClient { private readonly transport; constructor(transport: Transport); /** * 未読一覧を取得 * * @returns 未読情報 * @throws {CybozuOfficeSDKException} 通信エラーが発生した場合 */ getContents(options: { kind: 'unread' | 'read'; }): Promise<Notification>; }