Export

CreateReportScheduleSpecification

interface CreateReportScheduleSpecification {
    marketplaceIds: string[];
    nextReportCreationTime?: string;
    period: CreateReportScheduleSpecificationPeriodEnum;
    reportOptions?: {
        [key: string]: string;
    };
    reportType: string;
}

Properties

marketplaceIds: string[]

A list of marketplace identifiers for the report schedule.

Memberof

CreateReportScheduleSpecification

nextReportCreationTime?: string

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

Memberof

CreateReportScheduleSpecification

One of a set of predefined ISO 8601 periods that specifies how often a report should be created.

Memberof

CreateReportScheduleSpecification

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

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

Type declaration

  • [key: string]: string

Memberof

CreateReportScheduleSpecification

reportType: string

The report type. Refer to Report Type Values for more information.

Memberof

CreateReportScheduleSpecification