Request.php 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Shipping\Model\Shipment;
  7. /**
  8. * @method \Magento\Shipping\Model\Shipment\Request setOrderShipment(\Magento\Sales\Model\Order\Shipment $orderShipment)
  9. * @method \Magento\Sales\Model\Order\Shipment getOrderShipment()
  10. * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPersonName(string $value)
  11. * @method string getShipperContactPersonName()
  12. * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPersonFirstName(string $value)
  13. * @method string getShipperContactPersonFirstName()
  14. * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPersonLastName(string $value)
  15. * @method string getShipperContactPersonLastName()
  16. * @method \Magento\Shipping\Model\Shipment\Request setShipperContactCompanyName(string $value)
  17. * @method string getShipperContactCompanyName()
  18. * @method \Magento\Shipping\Model\Shipment\Request setShipperContactPhoneNumber(int $value)
  19. * @method int getShipperContactPhoneNumber()
  20. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStreet(string $value)
  21. * @method string getShipperAddressStreet()
  22. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStreet1(string $value)
  23. * @method string getShipperAddressStreet1()
  24. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStreet2(string $value)
  25. * @method string getShipperAddressStreet2()
  26. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressCity(string $value)
  27. * @method string getShipperAddressCity()
  28. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressStateOrProvinceCode(string $value)
  29. * @method string getShipperAddressStateOrProvinceCode()
  30. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressPostalCode(int $value)
  31. * @method int getShipperAddressPostalCode()
  32. * @method \Magento\Shipping\Model\Shipment\Request setShipperAddressCountryCode(string $value)
  33. * @method string getShipperAddressCountryCode()
  34. * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPersonName(string $value)
  35. * @method string getRecipientContactPersonName()
  36. * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPersonFirstName(string $value)
  37. * @method string getRecipientContactPersonFirstName()
  38. * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPersonLastName(string $value)
  39. * @method string getRecipientContactPersonLastName()
  40. * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactCompanyName(string $value)
  41. * @method string getRecipientContactCompanyName()
  42. * @method \Magento\Shipping\Model\Shipment\Request setRecipientContactPhoneNumber(int $value)
  43. * @method int getRecipientContactPhoneNumber()
  44. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStreet(string $value)
  45. * @method string getRecipientAddressStreet()
  46. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStreet1(string $value)
  47. * @method string getRecipientAddressStreet1()
  48. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStreet2(string $value)
  49. * @method string getRecipientAddressStreet2()
  50. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressCity(string $value)
  51. * @method string getRecipientAddressCity()
  52. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressStateOrProvinceCode(string $value)
  53. * @method string getRecipientAddressStateOrProvinceCode()
  54. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressPostalCode(int $value)
  55. * @method int getRecipientAddressPostalCode()
  56. * @method \Magento\Shipping\Model\Shipment\Request setRecipientAddressCountryCode(string $value)
  57. * @method string getRecipientAddressCountryCode()
  58. * @method \Magento\Shipping\Model\Shipment\Request setShippingMethod(string $value)
  59. * @method string getShippingMethod()
  60. * @method \Magento\Shipping\Model\Shipment\Request setPackageWeight(float $value)
  61. * @method float getPackageWeight()
  62. *
  63. * @author Magento Core Team <core@magentocommerce.com>
  64. */
  65. class Request extends \Magento\Framework\DataObject
  66. {
  67. }