1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Shipping\Model\Shipment;
- /**
- * @method \Magento\Shipping\Model\Shipment\Request setOrderShipment(\Magento\Sales\Model\Order\Shipment $orderShipment)
- * @method \Magento\Sales\Model\Order\Shipment getOrderShipment()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPersonName(string $value)
- * @method string getShipperContactPersonName()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPersonFirstName(string $value)
- * @method string getShipperContactPersonFirstName()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPersonLastName(string $value)
- * @method string getShipperContactPersonLastName()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperContactCompanyName(string $value)
- * @method string getShipperContactCompanyName()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPhoneNumber(int $value)
- * @method int getShipperContactPhoneNumber()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStreet(string $value)
- * @method string getShipperAddressStreet()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStreet1(string $value)
- * @method string getShipperAddressStreet1()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStreet2(string $value)
- * @method string getShipperAddressStreet2()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressCity(string $value)
- * @method string getShipperAddressCity()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStateOrProvinceCode(string $value)
- * @method string getShipperAddressStateOrProvinceCode()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressPostalCode(int $value)
- * @method int getShipperAddressPostalCode()
- * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressCountryCode(string $value)
- * @method string getShipperAddressCountryCode()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPersonName(string $value)
- * @method string getRecipientContactPersonName()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPersonFirstName(string $value)
- * @method string getRecipientContactPersonFirstName()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPersonLastName(string $value)
- * @method string getRecipientContactPersonLastName()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactCompanyName(string $value)
- * @method string getRecipientContactCompanyName()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPhoneNumber(int $value)
- * @method int getRecipientContactPhoneNumber()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStreet(string $value)
- * @method string getRecipientAddressStreet()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStreet1(string $value)
- * @method string getRecipientAddressStreet1()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStreet2(string $value)
- * @method string getRecipientAddressStreet2()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressCity(string $value)
- * @method string getRecipientAddressCity()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStateOrProvinceCode(string $value)
- * @method string getRecipientAddressStateOrProvinceCode()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressPostalCode(int $value)
- * @method int getRecipientAddressPostalCode()
- * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressCountryCode(string $value)
- * @method string getRecipientAddressCountryCode()
- * @method \Magento\Shipping\Model\Shipment\Request setShippingMethod(string $value)
- * @method string getShippingMethod()
- * @method \Magento\Shipping\Model\Shipment\Request setPackageWeight(float $value)
- * @method float getPackageWeight()
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Request extends \Magento\Framework\DataObject
- {
- }
|