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

Inherits:
CartCreate show all
Defined in:
lib/ruby-paa/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 CartOperation

#query_parameters

Methods inherited from Operation

#batch, #query_parameters, #response_group_orig=

Constructor Details

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

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



497
498
499
500
501
502
# File 'lib/ruby-paa/aws/shoppingcart.rb', line 497

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