UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

16 lines 695 B
import PeriodBasedReport, { periodBasedReportOptions } from '../../../base/PeriodBasedReport.js'; import commands from '../../commands.js'; export const options = periodBasedReportOptions; class OutlookReportMailActivityCountsCommand extends PeriodBasedReport { get name() { return commands.REPORT_MAILACTIVITYCOUNTS; } get usageEndpoint() { return 'getEmailActivityCounts'; } get description() { return 'Enables you to understand the trends of email activity (like how many were sent, read, and received) in your organization'; } } export default new OutlookReportMailActivityCountsCommand(); //# sourceMappingURL=report-mailactivitycounts.js.map