-
Notifications
You must be signed in to change notification settings - Fork 20
/
orders.json
163 lines (163 loc) · 3.75 KB
/
orders.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"orders": [
{
"id": 1,
"orderDate": "1 November, 2020",
"total": 125,
"deliveryDate": "2 November, 2020",
"items": [
{
"sku":"iPhone12-device-info.png",
"title":"iPhone 12",
"id": 5,
"price": 10,
"description":"iPhone 12"
},
{
"sku":"iPhone12-device-info.png",
"title":"iPhone 12 Pro Max",
"id": 6,
"price": 10,
"description":"iPhone 12 Pro Max"
},
{
"sku":"iPhone11-device-info.png",
"title":"iPhone 11",
"id": 7,
"price": 10,
"description":"iPhone 11"
},
{
"sku":"samsung-S20+-device-info.png",
"title":"Galaxy S20+",
"id": 6,
"price": 10,
"description":"Galaxy S20+"
},
{
"sku":"GooglePixel3-device-info.png",
"title":"Pixel 3",
"id": 7,
"price": 10,
"description":"Pixel 3"
}
]
},
{
"id": 2,
"orderDate": "1 November, 2020",
"total": 125,
"deliveryDate": "2 November, 2020",
"items": [
{
"sku":"GooglePixel3-device-info.png",
"title":"Pixel 3",
"id": 5,
"price": 10,
"description":"Pixel 3"
},
{
"sku":"samsung-s9-device-info.png",
"title":"Galaxy S9",
"id": 6,
"price": 10,
"description":"Galaxy S9"
},
{
"sku":"OnePlus8-device-info.png",
"title":"One Plus 8T",
"id": 7,
"price": 10,
"description":"One Plus 8T"
}
]
},
{
"id": 3,
"orderDate": "1 November, 2020",
"total": 125,
"deliveryDate": "2 November, 2020",
"items": [
{
"sku":"samsung-s9-device-info.png",
"title":"Galaxy S9",
"id": 8,
"price": 10,
"description":"Galaxy S9"
},
{
"sku":"OnePlus8-device-info.png",
"title":"One Plus 8 Pro",
"id": 9,
"price": 10,
"description":"One Plus 8 Pro"
},
{
"sku":"infocard.png",
"title":"iPhone XS Max",
"id": 10,
"price": 10,
"description":"iPhone XS Max"
}
]
},
{
"id": 4,
"orderDate": "1 November, 2020",
"total": 125,
"deliveryDate": "2 November, 2020",
"items": [
{
"sku":"iPhone12Pro-device-info.png",
"title":"iPhone 12 Pro",
"id": 11,
"price": 10,
"description":"iPhone 12 Pro"
},
{
"sku":"Note20-device-info.png",
"title":"Galaxy Note 20",
"id": 12,
"price": 10,
"description":"Galaxy Note 20"
},
{
"sku":"GooglePixel4-device-info.png",
"title":"Pixel 4",
"id": 13,
"price": 10,
"description":"Pixel 4"
}
]
},
{
"id": 5,
"orderDate": "1 November, 2020",
"total": 125,
"deliveryDate": "2 November, 2020",
"items": [
{
"sku":"OnePlus8-device-info.png",
"title":"One Plus 8",
"id": 14,
"price": 10,
"description":"One Plus 8"
},
{
"sku":"Note20Ultra-device-info.png",
"title":"Galaxy Note 20 Ultra",
"id": 15,
"price": 10,
"description":"Galaxy Note 20 Ultra"
},
{
"sku":"infocardiphone11Pro.png",
"title":"iPhone 11 Pro",
"id": 16,
"price": 10,
"description":"iPhone 11 Pro"
}
]
}
]
}