1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_Shipping
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: /**
28: * @method Mage_Shipping_Model_Shipment_Request setOrderShipment(Mage_Sales_Model_Order_Shipment $orderShipment)
29: * @method Mage_Sales_Model_Order_Shipment getOrderShipment()
30: * @method Mage_Shipping_Model_Shipment_Request setShipperContactPersonName(string $value)
31: * @method string getShipperContactPersonName()
32: * @method Mage_Shipping_Model_Shipment_Request setShipperContactPersonFirstName(string $value)
33: * @method string getShipperContactPersonFirstName()
34: * @method Mage_Shipping_Model_Shipment_Request setShipperContactPersonLastName(string $value)
35: * @method string getShipperContactPersonLastName()
36: * @method Mage_Shipping_Model_Shipment_Request setShipperContactCompanyName(string $value)
37: * @method string getShipperContactCompanyName()
38: * @method Mage_Shipping_Model_Shipment_Request setShipperContactPhoneNumber(int $value)
39: * @method int getShipperContactPhoneNumber()
40: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressStreet(string $value)
41: * @method string getShipperAddressStreet()
42: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressStreet1(string $value)
43: * @method string getShipperAddressStreet1()
44: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressStreet2(string $value)
45: * @method string getShipperAddressStreet2()
46: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressCity(string $value)
47: * @method string getShipperAddressCity()
48: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressStateOrProvinceCode(string $value)
49: * @method string getShipperAddressStateOrProvinceCode()
50: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressPostalCode(int $value)
51: * @method int getShipperAddressPostalCode()
52: * @method Mage_Shipping_Model_Shipment_Request setShipperAddressCountryCode(string $value)
53: * @method string getShipperAddressCountryCode()
54: * @method Mage_Shipping_Model_Shipment_Request setRecipientContactPersonName(string $value)
55: * @method string getRecipientContactPersonName()
56: * @method Mage_Shipping_Model_Shipment_Request setRecipientContactPersonFirstName(string $value)
57: * @method string getRecipientContactPersonFirstName()
58: * @method Mage_Shipping_Model_Shipment_Request setRecipientContactPersonLastName(string $value)
59: * @method string getRecipientContactPersonLastName()
60: * @method Mage_Shipping_Model_Shipment_Request setRecipientContactCompanyName(string $value)
61: * @method string getRecipientContactCompanyName()
62: * @method Mage_Shipping_Model_Shipment_Request setRecipientContactPhoneNumber(int $value)
63: * @method int getRecipientContactPhoneNumber()
64: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressStreet(string $value)
65: * @method string getRecipientAddressStreet()
66: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressStreet1(string $value)
67: * @method string getRecipientAddressStreet1()
68: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressStreet2(string $value)
69: * @method string getRecipientAddressStreet2()
70: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressCity(string $value)
71: * @method string getRecipientAddressCity()
72: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressStateOrProvinceCode(string $value)
73: * @method string getRecipientAddressStateOrProvinceCode()
74: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressPostalCode(int $value)
75: * @method int getRecipientAddressPostalCode()
76: * @method Mage_Shipping_Model_Shipment_Request setRecipientAddressCountryCode(string $value)
77: * @method string getRecipientAddressCountryCode()
78: * @method Mage_Shipping_Model_Shipment_Request setShippingMethod(string $value)
79: * @method string getShippingMethod()
80: * @method Mage_Shipping_Model_Shipment_Request setPackageWeight(float $value)
81: * @method float getPackageWeight()
82: *
83: * @category Mage
84: * @package Mage_Shipping
85: * @author Magento Core Team <core@magentocommerce.com>
86: */
87: class Mage_Shipping_Model_Shipment_Request extends Varien_Object
88: {
89: }
90: