Class: Amazon::AWS::ShoppingCart::CartModify

Inherits:
CartCreate show all
Defined in:
lib/amazon/aws/shoppingcart.rb

Overview

Worker class used by Cart#cart_modify.

Constant Summary

Constants inherited from Operation

Operation::OPERATIONS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params, #response_group

Instance Method Summary collapse

Methods inherited from Operation

#batch, #batch_parameters

Constructor Details

#initialize(cart_item_id, quantity, save_for_later = false, *more_items) ⇒ CartModify

Modify the quantity of item(s) in a cart.



465
466
467
468
469
470
# File 'lib/amazon/aws/shoppingcart.rb', line 465

def initialize(cart_item_id, quantity, save_for_later=false,
	       *more_items)

  super( 'CartItemId', cart_item_id, quantity, false, save_for_later,
	 *more_items )
end