示例#1
0
        public bool ManageReportSchedule(string reportType, DateTime scheduledDate)
        {
            // create the manage report request
            var request = new ManageReportScheduleRequest
            {
                Merchant     = _merchantId,
                ReportType   = reportType,
                ScheduleDate = scheduledDate,
                Schedule     = ScheduleType._1_DAY_.ToString(),
            };

            // submit the request
            var response = _amazonClient.ManageReportSchedule(request);

            return(true);
        }