UNPKG

amazon-pay-async

Version:

API wrapper for Amazon Pay using promises and defining types

16 lines (15 loc) 455 B
import { IReportInfo } from './entities/report.info.type'; import { ReportType } from './enums/report.type.enum'; export interface IGetReportListRequest { MaxCount?: number; ReportTypeList?: ReportType[]; Acknowledged?: boolean; ReportRequestIdList?: string[]; AvailableFromDate?: Date; AvailableToDate?: Date; } export interface IGetReportListResponse { NextToken: string; HasNext: boolean; ReportInfo: IReportInfo; }