Detailed information about a report schedule.

ReportSchedule

interface ReportSchedule {
    marketplaceIds?: string[];
    nextReportCreationTime?: string;
    period: string;
    reportOptions?: { [key: string]: string };
    reportScheduleId: string;
    reportType: string;
}

Properties

marketplaceIds?: string[]

A list of marketplace identifiers. The report document's contents will contain data for all of the specified marketplaces, unless the report type indicates otherwise.

ReportSchedule

nextReportCreationTime?: string

The date and time when the schedule will create its next report, in ISO 8601 date time format.

ReportSchedule

period: string

An ISO 8601 period value that indicates how often a report should be created.

ReportSchedule

reportOptions?: { [key: string]: string }

Additional information passed to reports. This varies by report type.

ReportSchedule

reportScheduleId: string

The identifier for the report schedule. This identifier is unique only in combination with a seller ID.

ReportSchedule

reportType: string

The report type.

ReportSchedule