public function OrderHandlerInterface::updateOrder in Mailchimp E-Commerce 8
Updates an existing order in the current Mailchimp store.
Parameters
string $order_id: The order ID.
array $order: Associative array of order information.
- currency_code (string): The three-letter ISO 4217 currency code.
- order_total (float): The total for the order.
- lines (array): An array of the order's line items.
See also
http://developer.mailchimp.com/documentation/mailchimp/reference/ecommer...
1 method overrides OrderHandlerInterface::updateOrder()
- OrderHandler::updateOrder in src/
OrderHandler.php - @inheritdoc
File
- src/
OrderHandlerInterface.php, line 55
Class
- OrderHandlerInterface
- Interface for the Order handler.
Namespace
Drupal\mailchimp_ecommerceCode
public function updateOrder($order_id, array $order);