How can I get the values of height,length,weight and width? since it has attributes on it? In other values I have no problem in retrieving it, just this values has attributes.Note:The height,length,weight and width part is only the problemHere's How I retrieve it:\[code\]$from_amazon = array( 'asin' => $item->ASIN, 'product_name' => $item->ItemAttributes->Title, 'image' => $item->SmallImage->URL, 'price' => $item->ItemAttributes->ListPrice->FormattedPrice, 'product_description' => $item->EditorialReviews->EditorialReview->Content, 'category' => $item->ItemAttributes->ProductGroup, 'weight' => $item->ItemAttributes->PackageDimensions->Weight);\[/code\]