CreateReportSpecification

interface CreateReportSpecification {
    dataEndTime?: string;
    dataStartTime?: string;
    marketplaceIds: string[];
    reportOptions?: { [key: string]: string };
    reportType: string;
}

Properties

dataEndTime?: string

The end of a date and time range, in ISO 8601 date time format, used for selecting the data to report. The default is now. The value must be prior to or equal to the current date and time. Not all report types make use of this.

CreateReportSpecification

dataStartTime?: string

The start of a date and time range, in ISO 8601 date time format, used for selecting the data to report. The default is now. The value must be prior to or equal to the current date and time. Not all report types make use of this.

CreateReportSpecification

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.

CreateReportSpecification

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

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

CreateReportSpecification

reportType: string

The report type.

CreateReportSpecification