""" Sample reports structures ========================= Used to create hard-coded responses to /report(s) to aid in early development/testing """ report1 = { 'generation_start': '2016-05-25 13:56:00', 'requested_by': 'The Artist Forever Known As Prince', 'period_ids': '202,203,204', 'transaction_types': 'AEA,AEV,AL,AS,AV,CE', 'file_type': 'txt', 'number_format': 'us', 's3_url': 's3://public.theorchard.com/reports/123', 'status': 'GENERATED'} report2 = { 'generation_start': '2016-05-25 14:12:00', 'requested_by': 'David Bowie Nuff Said', 'period_ids': '205,206,207', 'transaction_types': 'all', 'file_type': 'txt', 'number_format': 'us', 's3_url': 's3://public.theorchard.com/reports/456', 'status': 'GENERATED'} reports = [report1, report2] pagination = { 'type': 'standard', 'offset': 0, 'limit': 50, 'total_records': 2}