cb10-sdk
Version:
Cybozu Office 10 SDK for Node.js
20 lines • 594 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const PAGE_PREFIX = 'Schedule';
class ScheduleRequestOptions {
/**
* 予定取得のリクエストオプション
*
* @param options - 予定取得オプション
* @returns リクエストオプション
*/
static getEvents(options) {
return {
page: `${PAGE_PREFIX}UserMonth`,
UID: options.uID,
date: `da.${options.year}.${options.month}.1`,
};
}
}
exports.default = ScheduleRequestOptions;
//# sourceMappingURL=reqests.js.map