dustbag 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +92 -0
- data/lib/dustbag.rb +47 -0
- data/lib/dustbag/accessories.rb +7 -0
- data/lib/dustbag/accessory.rb +6 -0
- data/lib/dustbag/arguments.rb +8 -0
- data/lib/dustbag/availability_attributes.rb +9 -0
- data/lib/dustbag/browse_node.rb +15 -0
- data/lib/dustbag/browse_nodes.rb +7 -0
- data/lib/dustbag/common.rb +7 -0
- data/lib/dustbag/customer_reviews.rb +11 -0
- data/lib/dustbag/dimension.rb +13 -0
- data/lib/dustbag/dimensions.rb +10 -0
- data/lib/dustbag/editorial_review.rb +11 -0
- data/lib/dustbag/editorial_reviews.rb +7 -0
- data/lib/dustbag/http_headers.rb +8 -0
- data/lib/dustbag/image.rb +5 -0
- data/lib/dustbag/image_set.rb +9 -0
- data/lib/dustbag/image_sets.rb +7 -0
- data/lib/dustbag/item.rb +21 -0
- data/lib/dustbag/item_attributes.rb +79 -0
- data/lib/dustbag/item_link.rb +9 -0
- data/lib/dustbag/item_links.rb +7 -0
- data/lib/dustbag/item_search_request.rb +7 -0
- data/lib/dustbag/item_search_response.rb +8 -0
- data/lib/dustbag/items.rb +14 -0
- data/lib/dustbag/language.rb +7 -0
- data/lib/dustbag/languages.rb +7 -0
- data/lib/dustbag/offer.rb +52 -0
- data/lib/dustbag/offer_summary.rb +12 -0
- data/lib/dustbag/offers.rb +7 -0
- data/lib/dustbag/operation_request.rb +13 -0
- data/lib/dustbag/parser.rb +26 -0
- data/lib/dustbag/parser/collection_node.rb +37 -0
- data/lib/dustbag/parser/map_collection_node.rb +19 -0
- data/lib/dustbag/parser/node.rb +112 -0
- data/lib/dustbag/price.rb +13 -0
- data/lib/dustbag/request.rb +11 -0
- data/lib/dustbag/similar_product.rb +6 -0
- data/lib/dustbag/similar_products.rb +7 -0
- data/lib/dustbag/simple_product.rb +9 -0
- data/lib/dustbag/variation_attribute.rb +7 -0
- data/lib/dustbag/variation_attributes.rb +7 -0
- data/lib/dustbag/variation_summary.rb +13 -0
- data/lib/dustbag/variations.rb +18 -0
- data/lib/dustbag/version.rb +3 -0
- data/spec/dustbag/accessories_spec.rb +9 -0
- data/spec/dustbag/accessory_spec.rb +10 -0
- data/spec/dustbag/arguments_spec.rb +9 -0
- data/spec/dustbag/availability_attributes_spec.rb +21 -0
- data/spec/dustbag/browse_node_spec.rb +33 -0
- data/spec/dustbag/browse_nodes_spec.rb +9 -0
- data/spec/dustbag/customer_reviews_spec.rb +17 -0
- data/spec/dustbag/dimension_spec.rb +17 -0
- data/spec/dustbag/dimensions_spec.rb +29 -0
- data/spec/dustbag/editorial_review_spec.rb +21 -0
- data/spec/dustbag/editorial_reviews_spec.rb +9 -0
- data/spec/dustbag/http_headers_spec.rb +11 -0
- data/spec/dustbag/image_set_spec.rb +13 -0
- data/spec/dustbag/image_sets_spec.rb +9 -0
- data/spec/dustbag/image_spec.rb +9 -0
- data/spec/dustbag/item_attributes_spec.rb +188 -0
- data/spec/dustbag/item_link_spec.rb +17 -0
- data/spec/dustbag/item_links_spec.rb +9 -0
- data/spec/dustbag/item_search_request_spec.rb +21 -0
- data/spec/dustbag/item_search_response_spec.rb +13 -0
- data/spec/dustbag/item_spec.rb +110 -0
- data/spec/dustbag/items_spec.rb +25 -0
- data/spec/dustbag/language_spec.rb +17 -0
- data/spec/dustbag/languages_spec.rb +9 -0
- data/spec/dustbag/offer_spec.rb +43 -0
- data/spec/dustbag/offer_summary_spec.rb +30 -0
- data/spec/dustbag/offers_spec.rb +9 -0
- data/spec/dustbag/operation_request_spec.rb +27 -0
- data/spec/dustbag/parser_spec.rb +23 -0
- data/spec/dustbag/price_spec.rb +18 -0
- data/spec/dustbag/request_spec.rb +25 -0
- data/spec/dustbag/similar_product_spec.rb +18 -0
- data/spec/dustbag/similar_products_spec.rb +9 -0
- data/spec/dustbag/variation_attribute_spec.rb +17 -0
- data/spec/dustbag/variation_attributes_spec.rb +9 -0
- data/spec/dustbag/variation_summary_spec.rb +19 -0
- data/spec/dustbag/variations_spec.rb +22 -0
- data/spec/fixtures/accessories.xml +23 -0
- data/spec/fixtures/accessory.xml +4 -0
- data/spec/fixtures/arguments.xml +11 -0
- data/spec/fixtures/availability_attributes.xml +5 -0
- data/spec/fixtures/book_item_attributes.xml +61 -0
- data/spec/fixtures/browse_node.xml +23 -0
- data/spec/fixtures/browse_nodes.xml +25 -0
- data/spec/fixtures/customer_reviews.xml +5 -0
- data/spec/fixtures/dimension.xml +1 -0
- data/spec/fixtures/dimensions.xml +6 -0
- data/spec/fixtures/editorial_review.xml +5 -0
- data/spec/fixtures/editorial_reviews.xml +7 -0
- data/spec/fixtures/http_headers.xml +3 -0
- data/spec/fixtures/image.xml +5 -0
- data/spec/fixtures/image_set.xml +32 -0
- data/spec/fixtures/image_sets.xml +34 -0
- data/spec/fixtures/invalid_request.xml +8 -0
- data/spec/fixtures/item.xml +40 -0
- data/spec/fixtures/item_attributes.xml +58 -0
- data/spec/fixtures/item_large.xml +500 -0
- data/spec/fixtures/item_link.xml +4 -0
- data/spec/fixtures/item_links.xml +30 -0
- data/spec/fixtures/item_medium.xml +123 -0
- data/spec/fixtures/item_search_request.xml +5 -0
- data/spec/fixtures/item_search_response.xml +433 -0
- data/spec/fixtures/item_small.xml +40 -0
- data/spec/fixtures/item_with_accessories.xml +122 -0
- data/spec/fixtures/item_with_variation_attributes.xml +264 -0
- data/spec/fixtures/item_with_variations.xml +1016 -0
- data/spec/fixtures/items.xml +411 -0
- data/spec/fixtures/language.xml +4 -0
- data/spec/fixtures/languages.xml +6 -0
- data/spec/fixtures/movie_item_attributes.xml +30 -0
- data/spec/fixtures/offer.xml +26 -0
- data/spec/fixtures/offer_summary.xml +11 -0
- data/spec/fixtures/offers.xml +31 -0
- data/spec/fixtures/operation_request.xml +18 -0
- data/spec/fixtures/price.xml +5 -0
- data/spec/fixtures/request.xml +8 -0
- data/spec/fixtures/root_browse_node.xml +11 -0
- data/spec/fixtures/similar_product.xml +4 -0
- data/spec/fixtures/similar_products.xml +18 -0
- data/spec/fixtures/variation_attribute.xml +4 -0
- data/spec/fixtures/variation_attributes.xml +6 -0
- data/spec/fixtures/variation_summary.xml +12 -0
- data/spec/fixtures/variations.xml +1000 -0
- data/spec/shared_examples/collection_node.rb +15 -0
- data/spec/shared_examples/common_response.rb +7 -0
- data/spec/shared_examples/map_collection_node.rb +13 -0
- data/spec/shared_examples/node.rb +9 -0
- data/spec/shared_examples/node_context.rb +6 -0
- data/spec/shared_examples/simple_product.rb +4 -0
- data/spec/spec_helper.rb +16 -0
- metadata +356 -0
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
<Item>
|
|
2
|
+
<ASIN>B00ZQVSKSM</ASIN>
|
|
3
|
+
<ParentASIN>B0127MKEAE</ParentASIN>
|
|
4
|
+
<DetailPageURL>http://www.amazon.com/Motorola-Moto-3rd-Generation-Unlocked/dp/B00ZQVSKSM%3Fpsc%3D1%26SubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00ZQVSKSM</DetailPageURL>
|
|
5
|
+
<ItemLinks>
|
|
6
|
+
<ItemLink>
|
|
7
|
+
<Description>Technical Details</Description>
|
|
8
|
+
<URL>http://www.amazon.com/Motorola-Moto-3rd-Generation-Unlocked/dp/tech-data/B00ZQVSKSM%3FSubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
9
|
+
</ItemLink>
|
|
10
|
+
<ItemLink>
|
|
11
|
+
<Description>Add To Baby Registry</Description>
|
|
12
|
+
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB00ZQVSKSM%26SubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
13
|
+
</ItemLink>
|
|
14
|
+
<ItemLink>
|
|
15
|
+
<Description>Add To Wedding Registry</Description>
|
|
16
|
+
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB00ZQVSKSM%26SubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
17
|
+
</ItemLink>
|
|
18
|
+
<ItemLink>
|
|
19
|
+
<Description>Add To Wishlist</Description>
|
|
20
|
+
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB00ZQVSKSM%26SubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
21
|
+
</ItemLink>
|
|
22
|
+
<ItemLink>
|
|
23
|
+
<Description>Tell A Friend</Description>
|
|
24
|
+
<URL>http://www.amazon.com/gp/pdp/taf/B00ZQVSKSM%3FSubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
25
|
+
</ItemLink>
|
|
26
|
+
<ItemLink>
|
|
27
|
+
<Description>All Customer Reviews</Description>
|
|
28
|
+
<URL>http://www.amazon.com/review/product/B00ZQVSKSM%3FSubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
29
|
+
</ItemLink>
|
|
30
|
+
<ItemLink>
|
|
31
|
+
<Description>All Offers</Description>
|
|
32
|
+
<URL>http://www.amazon.com/gp/offer-listing/B00ZQVSKSM%3FSubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</URL>
|
|
33
|
+
</ItemLink>
|
|
34
|
+
</ItemLinks>
|
|
35
|
+
<SalesRank>399</SalesRank>
|
|
36
|
+
<SmallImage>
|
|
37
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL75_.jpg</URL>
|
|
38
|
+
<Height Units="pixels">75</Height>
|
|
39
|
+
<Width Units="pixels">75</Width>
|
|
40
|
+
</SmallImage>
|
|
41
|
+
<MediumImage>
|
|
42
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL160_.jpg</URL>
|
|
43
|
+
<Height Units="pixels">160</Height>
|
|
44
|
+
<Width Units="pixels">160</Width>
|
|
45
|
+
</MediumImage>
|
|
46
|
+
<LargeImage>
|
|
47
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL.jpg</URL>
|
|
48
|
+
<Height Units="pixels">500</Height>
|
|
49
|
+
<Width Units="pixels">500</Width>
|
|
50
|
+
</LargeImage>
|
|
51
|
+
<ImageSets>
|
|
52
|
+
<ImageSet Category="variant">
|
|
53
|
+
<SwatchImage>
|
|
54
|
+
<URL>http://ecx.images-amazon.com/images/I/41Y1S5TlfsL._SL30_.jpg</URL>
|
|
55
|
+
<Height Units="pixels">30</Height>
|
|
56
|
+
<Width Units="pixels">30</Width>
|
|
57
|
+
</SwatchImage>
|
|
58
|
+
<SmallImage>
|
|
59
|
+
<URL>http://ecx.images-amazon.com/images/I/41Y1S5TlfsL._SL75_.jpg</URL>
|
|
60
|
+
<Height Units="pixels">75</Height>
|
|
61
|
+
<Width Units="pixels">75</Width>
|
|
62
|
+
</SmallImage>
|
|
63
|
+
<ThumbnailImage>
|
|
64
|
+
<URL>http://ecx.images-amazon.com/images/I/41Y1S5TlfsL._SL75_.jpg</URL>
|
|
65
|
+
<Height Units="pixels">75</Height>
|
|
66
|
+
<Width Units="pixels">75</Width>
|
|
67
|
+
</ThumbnailImage>
|
|
68
|
+
<TinyImage>
|
|
69
|
+
<URL>http://ecx.images-amazon.com/images/I/41Y1S5TlfsL._SL110_.jpg</URL>
|
|
70
|
+
<Height Units="pixels">110</Height>
|
|
71
|
+
<Width Units="pixels">110</Width>
|
|
72
|
+
</TinyImage>
|
|
73
|
+
<MediumImage>
|
|
74
|
+
<URL>http://ecx.images-amazon.com/images/I/41Y1S5TlfsL._SL160_.jpg</URL>
|
|
75
|
+
<Height Units="pixels">160</Height>
|
|
76
|
+
<Width Units="pixels">160</Width>
|
|
77
|
+
</MediumImage>
|
|
78
|
+
<LargeImage>
|
|
79
|
+
<URL>http://ecx.images-amazon.com/images/I/41Y1S5TlfsL.jpg</URL>
|
|
80
|
+
<Height Units="pixels">500</Height>
|
|
81
|
+
<Width Units="pixels">500</Width>
|
|
82
|
+
</LargeImage>
|
|
83
|
+
</ImageSet>
|
|
84
|
+
<ImageSet Category="variant">
|
|
85
|
+
<SwatchImage>
|
|
86
|
+
<URL>http://ecx.images-amazon.com/images/I/41YHZAxjdsL._SL30_.jpg</URL>
|
|
87
|
+
<Height Units="pixels">30</Height>
|
|
88
|
+
<Width Units="pixels">30</Width>
|
|
89
|
+
</SwatchImage>
|
|
90
|
+
<SmallImage>
|
|
91
|
+
<URL>http://ecx.images-amazon.com/images/I/41YHZAxjdsL._SL75_.jpg</URL>
|
|
92
|
+
<Height Units="pixels">75</Height>
|
|
93
|
+
<Width Units="pixels">75</Width>
|
|
94
|
+
</SmallImage>
|
|
95
|
+
<ThumbnailImage>
|
|
96
|
+
<URL>http://ecx.images-amazon.com/images/I/41YHZAxjdsL._SL75_.jpg</URL>
|
|
97
|
+
<Height Units="pixels">75</Height>
|
|
98
|
+
<Width Units="pixels">75</Width>
|
|
99
|
+
</ThumbnailImage>
|
|
100
|
+
<TinyImage>
|
|
101
|
+
<URL>http://ecx.images-amazon.com/images/I/41YHZAxjdsL._SL110_.jpg</URL>
|
|
102
|
+
<Height Units="pixels">110</Height>
|
|
103
|
+
<Width Units="pixels">110</Width>
|
|
104
|
+
</TinyImage>
|
|
105
|
+
<MediumImage>
|
|
106
|
+
<URL>http://ecx.images-amazon.com/images/I/41YHZAxjdsL._SL160_.jpg</URL>
|
|
107
|
+
<Height Units="pixels">160</Height>
|
|
108
|
+
<Width Units="pixels">160</Width>
|
|
109
|
+
</MediumImage>
|
|
110
|
+
<LargeImage>
|
|
111
|
+
<URL>http://ecx.images-amazon.com/images/I/41YHZAxjdsL.jpg</URL>
|
|
112
|
+
<Height Units="pixels">500</Height>
|
|
113
|
+
<Width Units="pixels">500</Width>
|
|
114
|
+
</LargeImage>
|
|
115
|
+
</ImageSet>
|
|
116
|
+
<ImageSet Category="variant">
|
|
117
|
+
<SwatchImage>
|
|
118
|
+
<URL>http://ecx.images-amazon.com/images/I/411K7qqejVL._SL30_.jpg</URL>
|
|
119
|
+
<Height Units="pixels">30</Height>
|
|
120
|
+
<Width Units="pixels">30</Width>
|
|
121
|
+
</SwatchImage>
|
|
122
|
+
<SmallImage>
|
|
123
|
+
<URL>http://ecx.images-amazon.com/images/I/411K7qqejVL._SL75_.jpg</URL>
|
|
124
|
+
<Height Units="pixels">75</Height>
|
|
125
|
+
<Width Units="pixels">75</Width>
|
|
126
|
+
</SmallImage>
|
|
127
|
+
<ThumbnailImage>
|
|
128
|
+
<URL>http://ecx.images-amazon.com/images/I/411K7qqejVL._SL75_.jpg</URL>
|
|
129
|
+
<Height Units="pixels">75</Height>
|
|
130
|
+
<Width Units="pixels">75</Width>
|
|
131
|
+
</ThumbnailImage>
|
|
132
|
+
<TinyImage>
|
|
133
|
+
<URL>http://ecx.images-amazon.com/images/I/411K7qqejVL._SL110_.jpg</URL>
|
|
134
|
+
<Height Units="pixels">110</Height>
|
|
135
|
+
<Width Units="pixels">110</Width>
|
|
136
|
+
</TinyImage>
|
|
137
|
+
<MediumImage>
|
|
138
|
+
<URL>http://ecx.images-amazon.com/images/I/411K7qqejVL._SL160_.jpg</URL>
|
|
139
|
+
<Height Units="pixels">160</Height>
|
|
140
|
+
<Width Units="pixels">160</Width>
|
|
141
|
+
</MediumImage>
|
|
142
|
+
<LargeImage>
|
|
143
|
+
<URL>http://ecx.images-amazon.com/images/I/411K7qqejVL.jpg</URL>
|
|
144
|
+
<Height Units="pixels">500</Height>
|
|
145
|
+
<Width Units="pixels">500</Width>
|
|
146
|
+
</LargeImage>
|
|
147
|
+
</ImageSet>
|
|
148
|
+
<ImageSet Category="variant">
|
|
149
|
+
<SwatchImage>
|
|
150
|
+
<URL>http://ecx.images-amazon.com/images/I/41lwnt2gB-L._SL30_.jpg</URL>
|
|
151
|
+
<Height Units="pixels">30</Height>
|
|
152
|
+
<Width Units="pixels">30</Width>
|
|
153
|
+
</SwatchImage>
|
|
154
|
+
<SmallImage>
|
|
155
|
+
<URL>http://ecx.images-amazon.com/images/I/41lwnt2gB-L._SL75_.jpg</URL>
|
|
156
|
+
<Height Units="pixels">75</Height>
|
|
157
|
+
<Width Units="pixels">75</Width>
|
|
158
|
+
</SmallImage>
|
|
159
|
+
<ThumbnailImage>
|
|
160
|
+
<URL>http://ecx.images-amazon.com/images/I/41lwnt2gB-L._SL75_.jpg</URL>
|
|
161
|
+
<Height Units="pixels">75</Height>
|
|
162
|
+
<Width Units="pixels">75</Width>
|
|
163
|
+
</ThumbnailImage>
|
|
164
|
+
<TinyImage>
|
|
165
|
+
<URL>http://ecx.images-amazon.com/images/I/41lwnt2gB-L._SL110_.jpg</URL>
|
|
166
|
+
<Height Units="pixels">110</Height>
|
|
167
|
+
<Width Units="pixels">110</Width>
|
|
168
|
+
</TinyImage>
|
|
169
|
+
<MediumImage>
|
|
170
|
+
<URL>http://ecx.images-amazon.com/images/I/41lwnt2gB-L._SL160_.jpg</URL>
|
|
171
|
+
<Height Units="pixels">160</Height>
|
|
172
|
+
<Width Units="pixels">160</Width>
|
|
173
|
+
</MediumImage>
|
|
174
|
+
<LargeImage>
|
|
175
|
+
<URL>http://ecx.images-amazon.com/images/I/41lwnt2gB-L.jpg</URL>
|
|
176
|
+
<Height Units="pixels">500</Height>
|
|
177
|
+
<Width Units="pixels">500</Width>
|
|
178
|
+
</LargeImage>
|
|
179
|
+
</ImageSet>
|
|
180
|
+
<ImageSet Category="variant">
|
|
181
|
+
<SwatchImage>
|
|
182
|
+
<URL>http://ecx.images-amazon.com/images/I/313%2Btu1rfML._SL30_.jpg</URL>
|
|
183
|
+
<Height Units="pixels">30</Height>
|
|
184
|
+
<Width Units="pixels">30</Width>
|
|
185
|
+
</SwatchImage>
|
|
186
|
+
<SmallImage>
|
|
187
|
+
<URL>http://ecx.images-amazon.com/images/I/313%2Btu1rfML._SL75_.jpg</URL>
|
|
188
|
+
<Height Units="pixels">75</Height>
|
|
189
|
+
<Width Units="pixels">75</Width>
|
|
190
|
+
</SmallImage>
|
|
191
|
+
<ThumbnailImage>
|
|
192
|
+
<URL>http://ecx.images-amazon.com/images/I/313%2Btu1rfML._SL75_.jpg</URL>
|
|
193
|
+
<Height Units="pixels">75</Height>
|
|
194
|
+
<Width Units="pixels">75</Width>
|
|
195
|
+
</ThumbnailImage>
|
|
196
|
+
<TinyImage>
|
|
197
|
+
<URL>http://ecx.images-amazon.com/images/I/313%2Btu1rfML._SL110_.jpg</URL>
|
|
198
|
+
<Height Units="pixels">110</Height>
|
|
199
|
+
<Width Units="pixels">110</Width>
|
|
200
|
+
</TinyImage>
|
|
201
|
+
<MediumImage>
|
|
202
|
+
<URL>http://ecx.images-amazon.com/images/I/313%2Btu1rfML._SL160_.jpg</URL>
|
|
203
|
+
<Height Units="pixels">160</Height>
|
|
204
|
+
<Width Units="pixels">160</Width>
|
|
205
|
+
</MediumImage>
|
|
206
|
+
<LargeImage>
|
|
207
|
+
<URL>http://ecx.images-amazon.com/images/I/313%2Btu1rfML.jpg</URL>
|
|
208
|
+
<Height Units="pixels">500</Height>
|
|
209
|
+
<Width Units="pixels">500</Width>
|
|
210
|
+
</LargeImage>
|
|
211
|
+
</ImageSet>
|
|
212
|
+
<ImageSet Category="variant">
|
|
213
|
+
<SwatchImage>
|
|
214
|
+
<URL>http://ecx.images-amazon.com/images/I/313J-Vd8MTL._SL30_.jpg</URL>
|
|
215
|
+
<Height Units="pixels">30</Height>
|
|
216
|
+
<Width Units="pixels">30</Width>
|
|
217
|
+
</SwatchImage>
|
|
218
|
+
<SmallImage>
|
|
219
|
+
<URL>http://ecx.images-amazon.com/images/I/313J-Vd8MTL._SL75_.jpg</URL>
|
|
220
|
+
<Height Units="pixels">75</Height>
|
|
221
|
+
<Width Units="pixels">75</Width>
|
|
222
|
+
</SmallImage>
|
|
223
|
+
<ThumbnailImage>
|
|
224
|
+
<URL>http://ecx.images-amazon.com/images/I/313J-Vd8MTL._SL75_.jpg</URL>
|
|
225
|
+
<Height Units="pixels">75</Height>
|
|
226
|
+
<Width Units="pixels">75</Width>
|
|
227
|
+
</ThumbnailImage>
|
|
228
|
+
<TinyImage>
|
|
229
|
+
<URL>http://ecx.images-amazon.com/images/I/313J-Vd8MTL._SL110_.jpg</URL>
|
|
230
|
+
<Height Units="pixels">110</Height>
|
|
231
|
+
<Width Units="pixels">110</Width>
|
|
232
|
+
</TinyImage>
|
|
233
|
+
<MediumImage>
|
|
234
|
+
<URL>http://ecx.images-amazon.com/images/I/313J-Vd8MTL._SL160_.jpg</URL>
|
|
235
|
+
<Height Units="pixels">160</Height>
|
|
236
|
+
<Width Units="pixels">160</Width>
|
|
237
|
+
</MediumImage>
|
|
238
|
+
<LargeImage>
|
|
239
|
+
<URL>http://ecx.images-amazon.com/images/I/313J-Vd8MTL.jpg</URL>
|
|
240
|
+
<Height Units="pixels">500</Height>
|
|
241
|
+
<Width Units="pixels">500</Width>
|
|
242
|
+
</LargeImage>
|
|
243
|
+
</ImageSet>
|
|
244
|
+
<ImageSet Category="variant">
|
|
245
|
+
<SwatchImage>
|
|
246
|
+
<URL>http://ecx.images-amazon.com/images/I/21zJFDRigrL._SL30_.jpg</URL>
|
|
247
|
+
<Height Units="pixels">30</Height>
|
|
248
|
+
<Width Units="pixels">30</Width>
|
|
249
|
+
</SwatchImage>
|
|
250
|
+
<SmallImage>
|
|
251
|
+
<URL>http://ecx.images-amazon.com/images/I/21zJFDRigrL._SL75_.jpg</URL>
|
|
252
|
+
<Height Units="pixels">75</Height>
|
|
253
|
+
<Width Units="pixels">75</Width>
|
|
254
|
+
</SmallImage>
|
|
255
|
+
<ThumbnailImage>
|
|
256
|
+
<URL>http://ecx.images-amazon.com/images/I/21zJFDRigrL._SL75_.jpg</URL>
|
|
257
|
+
<Height Units="pixels">75</Height>
|
|
258
|
+
<Width Units="pixels">75</Width>
|
|
259
|
+
</ThumbnailImage>
|
|
260
|
+
<TinyImage>
|
|
261
|
+
<URL>http://ecx.images-amazon.com/images/I/21zJFDRigrL._SL110_.jpg</URL>
|
|
262
|
+
<Height Units="pixels">110</Height>
|
|
263
|
+
<Width Units="pixels">110</Width>
|
|
264
|
+
</TinyImage>
|
|
265
|
+
<MediumImage>
|
|
266
|
+
<URL>http://ecx.images-amazon.com/images/I/21zJFDRigrL._SL160_.jpg</URL>
|
|
267
|
+
<Height Units="pixels">160</Height>
|
|
268
|
+
<Width Units="pixels">160</Width>
|
|
269
|
+
</MediumImage>
|
|
270
|
+
<LargeImage>
|
|
271
|
+
<URL>http://ecx.images-amazon.com/images/I/21zJFDRigrL.jpg</URL>
|
|
272
|
+
<Height Units="pixels">500</Height>
|
|
273
|
+
<Width Units="pixels">500</Width>
|
|
274
|
+
</LargeImage>
|
|
275
|
+
</ImageSet>
|
|
276
|
+
<ImageSet Category="variant">
|
|
277
|
+
<SwatchImage>
|
|
278
|
+
<URL>http://ecx.images-amazon.com/images/I/41c-BzMUcKL._SL30_.jpg</URL>
|
|
279
|
+
<Height Units="pixels">30</Height>
|
|
280
|
+
<Width Units="pixels">30</Width>
|
|
281
|
+
</SwatchImage>
|
|
282
|
+
<SmallImage>
|
|
283
|
+
<URL>http://ecx.images-amazon.com/images/I/41c-BzMUcKL._SL75_.jpg</URL>
|
|
284
|
+
<Height Units="pixels">75</Height>
|
|
285
|
+
<Width Units="pixels">75</Width>
|
|
286
|
+
</SmallImage>
|
|
287
|
+
<ThumbnailImage>
|
|
288
|
+
<URL>http://ecx.images-amazon.com/images/I/41c-BzMUcKL._SL75_.jpg</URL>
|
|
289
|
+
<Height Units="pixels">75</Height>
|
|
290
|
+
<Width Units="pixels">75</Width>
|
|
291
|
+
</ThumbnailImage>
|
|
292
|
+
<TinyImage>
|
|
293
|
+
<URL>http://ecx.images-amazon.com/images/I/41c-BzMUcKL._SL110_.jpg</URL>
|
|
294
|
+
<Height Units="pixels">110</Height>
|
|
295
|
+
<Width Units="pixels">110</Width>
|
|
296
|
+
</TinyImage>
|
|
297
|
+
<MediumImage>
|
|
298
|
+
<URL>http://ecx.images-amazon.com/images/I/41c-BzMUcKL._SL160_.jpg</URL>
|
|
299
|
+
<Height Units="pixels">160</Height>
|
|
300
|
+
<Width Units="pixels">160</Width>
|
|
301
|
+
</MediumImage>
|
|
302
|
+
<LargeImage>
|
|
303
|
+
<URL>http://ecx.images-amazon.com/images/I/41c-BzMUcKL.jpg</URL>
|
|
304
|
+
<Height Units="pixels">500</Height>
|
|
305
|
+
<Width Units="pixels">500</Width>
|
|
306
|
+
</LargeImage>
|
|
307
|
+
</ImageSet>
|
|
308
|
+
<ImageSet Category="primary">
|
|
309
|
+
<SwatchImage>
|
|
310
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL30_.jpg</URL>
|
|
311
|
+
<Height Units="pixels">30</Height>
|
|
312
|
+
<Width Units="pixels">30</Width>
|
|
313
|
+
</SwatchImage>
|
|
314
|
+
<SmallImage>
|
|
315
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL75_.jpg</URL>
|
|
316
|
+
<Height Units="pixels">75</Height>
|
|
317
|
+
<Width Units="pixels">75</Width>
|
|
318
|
+
</SmallImage>
|
|
319
|
+
<ThumbnailImage>
|
|
320
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL75_.jpg</URL>
|
|
321
|
+
<Height Units="pixels">75</Height>
|
|
322
|
+
<Width Units="pixels">75</Width>
|
|
323
|
+
</ThumbnailImage>
|
|
324
|
+
<TinyImage>
|
|
325
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL110_.jpg</URL>
|
|
326
|
+
<Height Units="pixels">110</Height>
|
|
327
|
+
<Width Units="pixels">110</Width>
|
|
328
|
+
</TinyImage>
|
|
329
|
+
<MediumImage>
|
|
330
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL._SL160_.jpg</URL>
|
|
331
|
+
<Height Units="pixels">160</Height>
|
|
332
|
+
<Width Units="pixels">160</Width>
|
|
333
|
+
</MediumImage>
|
|
334
|
+
<LargeImage>
|
|
335
|
+
<URL>http://ecx.images-amazon.com/images/I/41Ky3b2lGyL.jpg</URL>
|
|
336
|
+
<Height Units="pixels">500</Height>
|
|
337
|
+
<Width Units="pixels">500</Width>
|
|
338
|
+
</LargeImage>
|
|
339
|
+
</ImageSet>
|
|
340
|
+
</ImageSets>
|
|
341
|
+
<ItemAttributes>
|
|
342
|
+
<Binding>Unlocked Phone</Binding>
|
|
343
|
+
<Brand>Motorola</Brand>
|
|
344
|
+
<Color>Black</Color>
|
|
345
|
+
<EAN>0701799787331</EAN>
|
|
346
|
+
<EANList>
|
|
347
|
+
<EANListElement>0701799787331</EANListElement>
|
|
348
|
+
<EANListElement>0723755007703</EANListElement>
|
|
349
|
+
</EANList>
|
|
350
|
+
<Feature>Advanced water resistance</Feature>
|
|
351
|
+
<Feature>13 MP camera which includes a color-balancing dual LED Flash</Feature>
|
|
352
|
+
<Feature>5" HD display; Brilliant display quality and the strength of Corning® Gorilla® Glass</Feature>
|
|
353
|
+
<Feature>Quad core processing power in a great value product</Feature>
|
|
354
|
+
<Feature>5MP rear camera with a VGA front facing camera</Feature>
|
|
355
|
+
<Feature>Great 24hr battery performance with a 2470mAh battery</Feature>
|
|
356
|
+
<Feature>Expandable memory; Slot for an optional mircoSD card with up to 32 GB capacity.</Feature>
|
|
357
|
+
<Feature>4G LTE Speed; Browse, stream music, watch video, and play games at blazing speed.</Feature>
|
|
358
|
+
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
|
|
359
|
+
<ItemDimensions>
|
|
360
|
+
<Height Units="hundredths-inches">559</Height>
|
|
361
|
+
<Length Units="hundredths-inches">263</Length>
|
|
362
|
+
<Weight Units="hundredths-pounds">34</Weight>
|
|
363
|
+
<Width Units="hundredths-inches">285</Width>
|
|
364
|
+
</ItemDimensions>
|
|
365
|
+
<Label>Motorola</Label>
|
|
366
|
+
<ListPrice>
|
|
367
|
+
<Amount>17999</Amount>
|
|
368
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
369
|
+
<FormattedPrice>$179.99</FormattedPrice>
|
|
370
|
+
</ListPrice>
|
|
371
|
+
<Manufacturer>Motorola</Manufacturer>
|
|
372
|
+
<Model>XT1540</Model>
|
|
373
|
+
<MPN>00770NARTL</MPN>
|
|
374
|
+
<PackageDimensions>
|
|
375
|
+
<Height Units="hundredths-inches">140</Height>
|
|
376
|
+
<Length Units="hundredths-inches">590</Length>
|
|
377
|
+
<Weight Units="hundredths-pounds">65</Weight>
|
|
378
|
+
<Width Units="hundredths-inches">430</Width>
|
|
379
|
+
</PackageDimensions>
|
|
380
|
+
<PackageQuantity>1</PackageQuantity>
|
|
381
|
+
<PartNumber>00770NARTL</PartNumber>
|
|
382
|
+
<ProductGroup>Wireless</ProductGroup>
|
|
383
|
+
<ProductTypeName>WIRELESS_ACCESSORY</ProductTypeName>
|
|
384
|
+
<Publisher>Motorola</Publisher>
|
|
385
|
+
<Size>8 GB</Size>
|
|
386
|
+
<Studio>Motorola</Studio>
|
|
387
|
+
<Title>Motorola Moto G (3rd Generation) - Black - 8 GB - Global GSM Unlocked Phone</Title>
|
|
388
|
+
<TradeInValue>
|
|
389
|
+
<Amount>8796</Amount>
|
|
390
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
391
|
+
<FormattedPrice>$87.96</FormattedPrice>
|
|
392
|
+
</TradeInValue>
|
|
393
|
+
<UPC>723755007703</UPC>
|
|
394
|
+
<UPCList>
|
|
395
|
+
<UPCListElement>723755007703</UPCListElement>
|
|
396
|
+
<UPCListElement>701799787331</UPCListElement>
|
|
397
|
+
</UPCList>
|
|
398
|
+
</ItemAttributes>
|
|
399
|
+
<OfferSummary>
|
|
400
|
+
<LowestNewPrice>
|
|
401
|
+
<Amount>17399</Amount>
|
|
402
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
403
|
+
<FormattedPrice>$173.99</FormattedPrice>
|
|
404
|
+
</LowestNewPrice>
|
|
405
|
+
<LowestUsedPrice>
|
|
406
|
+
<Amount>13399</Amount>
|
|
407
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
408
|
+
<FormattedPrice>$133.99</FormattedPrice>
|
|
409
|
+
</LowestUsedPrice>
|
|
410
|
+
<TotalNew>4</TotalNew>
|
|
411
|
+
<TotalUsed>18</TotalUsed>
|
|
412
|
+
<TotalCollectible>0</TotalCollectible>
|
|
413
|
+
<TotalRefurbished>0</TotalRefurbished>
|
|
414
|
+
</OfferSummary>
|
|
415
|
+
<Offers>
|
|
416
|
+
<TotalOffers>1</TotalOffers>
|
|
417
|
+
<TotalOfferPages>1</TotalOfferPages>
|
|
418
|
+
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/B00ZQVSKSM%3FSubscriptionId%3DAKIAIHNK3TBF4L5EDREQ%26tag%3Dmagmalabs-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKSM</MoreOffersUrl>
|
|
419
|
+
<Offer>
|
|
420
|
+
<OfferAttributes>
|
|
421
|
+
<Condition>New</Condition>
|
|
422
|
+
</OfferAttributes>
|
|
423
|
+
<OfferListing>
|
|
424
|
+
<OfferListingId>DZEJaOVZkxOW3bnN9SFvLNIEVwWDB3Y0HBG5zgBQ7jwJI9gANnOgNkJYiwRiuWUAx8GXFAWOjSrH4nrN4grN4gmtpEZHnkVZy4bHkNzvMu2G18d6bykCLQ%3D%3D</OfferListingId>
|
|
425
|
+
<Price>
|
|
426
|
+
<Amount>17962</Amount>
|
|
427
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
428
|
+
<FormattedPrice>$179.62</FormattedPrice>
|
|
429
|
+
</Price>
|
|
430
|
+
<AmountSaved>
|
|
431
|
+
<Amount>37</Amount>
|
|
432
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
433
|
+
<FormattedPrice>$0.37</FormattedPrice>
|
|
434
|
+
</AmountSaved>
|
|
435
|
+
<Availability>Usually ships in 24 hours</Availability>
|
|
436
|
+
<AvailabilityAttributes>
|
|
437
|
+
<AvailabilityType>now</AvailabilityType>
|
|
438
|
+
<MinimumHours>0</MinimumHours>
|
|
439
|
+
<MaximumHours>0</MaximumHours>
|
|
440
|
+
</AvailabilityAttributes>
|
|
441
|
+
<IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping>
|
|
442
|
+
<IsEligibleForPrime>1</IsEligibleForPrime>
|
|
443
|
+
</OfferListing>
|
|
444
|
+
</Offer>
|
|
445
|
+
</Offers>
|
|
446
|
+
<CustomerReviews>
|
|
447
|
+
<IFrameURL>http://www.amazon.com/reviews/iframe?akid=AKIAIHNK3TBF4L5EDREQ&alinkCode=xm2&asin=B00ZQVSKSM&atag=magmalabs-20&exp=2015-11-06T18%3A09%3A07Z&v=2&sig=LVQAhPoL48XLrPTdDEa%2FjC4h8r81FFEVqO2OmhIosT8%3D</IFrameURL>
|
|
448
|
+
<HasReviews>true</HasReviews>
|
|
449
|
+
</CustomerReviews>
|
|
450
|
+
<EditorialReviews>
|
|
451
|
+
<EditorialReview>
|
|
452
|
+
<Source>Product Description</Source>
|
|
453
|
+
<Content>Quad core processing power in a great value product. 4.5" display. 5MP rear camera with a VGA front facing camera. Great 24hr battery performance with a 2390mAh battery. Personalize with colored bands.</Content>
|
|
454
|
+
<IsLinkSuppressed>0</IsLinkSuppressed>
|
|
455
|
+
</EditorialReview>
|
|
456
|
+
</EditorialReviews>
|
|
457
|
+
<SimilarProducts>
|
|
458
|
+
<SimilarProduct>
|
|
459
|
+
<ASIN>B0146PPAG8</ASIN>
|
|
460
|
+
<Title>Moto G (3rd Gen) Tempered Glass Screen Protector, PLESON® Motorola Moto G 3rd Generation Screen Protector [Lifetime No-Hassle Warranty] 0.3mm Premium HD Clear Glass Screen Protector for Moto G3</Title>
|
|
461
|
+
</SimilarProduct>
|
|
462
|
+
<SimilarProduct>
|
|
463
|
+
<ASIN>B0110NI016</ASIN>
|
|
464
|
+
<Title>Motorola Moto G (3rd Generation) Case Cimo [Grip] Premium Slim Fit Flexible TPU Case for Motorola Moto G G3 (3rd Gen, 2015) - Black</Title>
|
|
465
|
+
</SimilarProduct>
|
|
466
|
+
<SimilarProduct>
|
|
467
|
+
<ASIN>B0123NLDGG</ASIN>
|
|
468
|
+
<Title>Moto G 3rd Generation Screen Protector [0.2mm Tempered Glass], SPARIN® [Explosion-proof] [Repeatable Installation] Clear Glass Screen Protector for Motorola Moto G 3rd Generation (2015 New Released), Retail Packaging</Title>
|
|
469
|
+
</SimilarProduct>
|
|
470
|
+
<SimilarProduct>
|
|
471
|
+
<ASIN>B010Q57T02</ASIN>
|
|
472
|
+
<Title>SanDisk Ultra 32GB microSDHC UHS-I Card with Adapter, Grey/Red, Standard Packaging (SDSQUNC-032G-GN6MA)</Title>
|
|
473
|
+
</SimilarProduct>
|
|
474
|
+
</SimilarProducts>
|
|
475
|
+
<BrowseNodes>
|
|
476
|
+
<BrowseNode>
|
|
477
|
+
<BrowseNodeId>2407749011</BrowseNodeId>
|
|
478
|
+
<Name>Unlocked Cell Phones</Name>
|
|
479
|
+
<Ancestors>
|
|
480
|
+
<BrowseNode>
|
|
481
|
+
<BrowseNodeId>7072561011</BrowseNodeId>
|
|
482
|
+
<Name>Cell Phones</Name>
|
|
483
|
+
<Ancestors>
|
|
484
|
+
<BrowseNode>
|
|
485
|
+
<BrowseNodeId>2335753011</BrowseNodeId>
|
|
486
|
+
<Name>Categories</Name>
|
|
487
|
+
<IsCategoryRoot>1</IsCategoryRoot>
|
|
488
|
+
<Ancestors>
|
|
489
|
+
<BrowseNode>
|
|
490
|
+
<BrowseNodeId>2335752011</BrowseNodeId>
|
|
491
|
+
<Name>Cell Phones & Accessories</Name>
|
|
492
|
+
</BrowseNode>
|
|
493
|
+
</Ancestors>
|
|
494
|
+
</BrowseNode>
|
|
495
|
+
</Ancestors>
|
|
496
|
+
</BrowseNode>
|
|
497
|
+
</Ancestors>
|
|
498
|
+
</BrowseNode>
|
|
499
|
+
</BrowseNodes>
|
|
500
|
+
</Item>
|