/** * AmazonFulfillmentOrder fetches a fulfillment order from Amazon. You need a Fulfillment Order ID. * * The parameters are passed to the parent constructor, which are * in turn passed to the AmazonCore constructor. See it for more information * on these parameters and common methods. * Please note that an extra parameter comes before the usual Mock Mode parameters, * so be careful when setting up the object. * @param string $s <p>Name for the store you want to use.</p> * @param string $id [optional] <p>The Fulfillment Order ID to set for the object.</p> * @param boolean $mock [optional] <p>This is a flag for enabling Mock Mode. * This defaults to <b>FALSE</b>.</p> * @param array|string $m [optional] <p>The files (or file) to use in Mock Mode.</p> * @param string $config [optional] <p>An alternate config file to set. Used for testing.</p> */ public function __construct($s, $id = null, $mock = false, $m = null, $config = null) { parent::__construct($s, $mock, $m, $config); if ($id) { $this->setOrderId($id); } }
/** * AmazonPackageTracker fetches package tracking details from Amazon. * * The parameters are passed to the parent constructor, which are * in turn passed to the AmazonCore constructor. See it for more information * on these parameters and common methods. * Please note that an extra parameter comes before the usual Mock Mode parameters, * so be careful when setting up the object. * @param string $s <p>Name for the store you want to use.</p> * @param string $id [optional] <p>The package ID to set for the object.</p> * @param boolean $mock [optional] <p>This is a flag for enabling Mock Mode. * This defaults to <b>FALSE</b>.</p> * @param array|string $m [optional] <p>The files (or file) to use in Mock Mode.</p> * @param string $config [optional] <p>An alternate config file to set. Used for testing.</p> */ public function __construct($s, $id = null, $mock = false, $m = null, $config = null) { parent::__construct($s, $mock, $m, $config); if ($id) { $this->setPackageNumber($id); } $this->options['Action'] = 'GetPackageTrackingDetails'; }
/** * AmazonFulfillmentOrderCreator creates a fulfillment order. You need a fulfillment order ID. * * The parameters are passed to the parent constructor, which are * in turn passed to the AmazonCore constructor. See it for more information * on these parameters and common methods. * @param string $s <p>Name for the store you want to use.</p> * @param boolean $mock [optional] <p>This is a flag for enabling Mock Mode. * This defaults to <b>FALSE</b>.</p> * @param array|string $m [optional] <p>The files (or file) to use in Mock Mode.</p> * @param string $config [optional] <p>An alternate config file to set. Used for testing.</p> */ public function __construct($s, $mock = false, $m = null, $config = null) { parent::__construct($s, $mock, $m, $config); $this->options['Action'] = 'CreateFulfillmentOrder'; }
/** * AmazonFulfillmentPreview sends a request to Amazon to generate a Fulfillment Shipment Preview. * * The parameters are passed to the parent constructor, which are * in turn passed to the AmazonCore constructor. See it for more information * on these parameters and common methods. * @param string $s <p>Name for the store you want to use.</p> * @param boolean $mock [optional] <p>This is a flag for enabling Mock Mode. * This defaults to <b>FALSE</b>.</p> * @param array|string $m [optional] <p>The files (or file) to use in Mock Mode.</p> * @param string $config [optional] <p>An alternate config file to set. Used for testing.</p> */ public function __construct($s, $mock = false, $m = null, $config = null) { parent::__construct($s, $mock, $m, $config); $this->options['Action'] = 'GetFulfillmentPreview'; }