amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
11 lines (10 loc) • 341 B
TypeScript
import { IReportSchedule } from './entities/report.schedule.type';
import { ReportType } from './enums/report.type.enum';
export interface IGetReportScheduleListRequest {
ReportTypeList?: ReportType[];
}
export interface IGetReportScheduleListRespose {
NextToken: string;
HasNext: boolean;
ReportSchedule: IReportSchedule;
}