A modest collection of PHP libraries used at SparkFun.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
1.8 KiB

  1. <?php
  2. namespace SparkLib\UPS\Rate;
  3. class ShipmentRatingOptionsType
  4. {
  5. /**
  6. *
  7. * @var string $NegotiatedRatesIndicator
  8. * @access public
  9. */
  10. public $NegotiatedRatesIndicator = null;
  11. /**
  12. *
  13. * @var string $FRSShipmentIndicator
  14. * @access public
  15. */
  16. public $FRSShipmentIndicator = null;
  17. /**
  18. *
  19. * @var string $RateChartIndicator
  20. * @access public
  21. */
  22. public $RateChartIndicator = null;
  23. /**
  24. *
  25. * @param string $NegotiatedRatesIndicator
  26. * @param string $FRSShipmentIndicator
  27. * @param string $RateChartIndicator
  28. * @access public
  29. */
  30. public function __construct($NegotiatedRatesIndicator = null, $FRSShipmentIndicator = null, $RateChartIndicator = null)
  31. {
  32. $this->NegotiatedRatesIndicator = $NegotiatedRatesIndicator;
  33. $this->FRSShipmentIndicator = $FRSShipmentIndicator;
  34. $this->RateChartIndicator = $RateChartIndicator;
  35. }
  36. /**
  37. *
  38. * @return string
  39. */
  40. public function getNegotiatedRatesIndicator()
  41. {
  42. return $this->NegotiatedRatesIndicator;
  43. }
  44. /**
  45. *
  46. * @param string $NegotiatedRatesIndicator
  47. */
  48. public function setNegotiatedRatesIndicator($NegotiatedRatesIndicator)
  49. {
  50. $this->NegotiatedRatesIndicator = $NegotiatedRatesIndicator;
  51. }
  52. /**
  53. *
  54. * @return string
  55. */
  56. public function getFRSShipmentIndicator()
  57. {
  58. return $this->FRSShipmentIndicator;
  59. }
  60. /**
  61. *
  62. * @param string $FRSShipmentIndicator
  63. */
  64. public function setFRSShipmentIndicator($FRSShipmentIndicator)
  65. {
  66. $this->FRSShipmentIndicator = $FRSShipmentIndicator;
  67. }
  68. /**
  69. *
  70. * @return string
  71. */
  72. public function getRateChartIndicator()
  73. {
  74. return $this->RateChartIndicator;
  75. }
  76. /**
  77. *
  78. * @param string $RateChartIndicator
  79. */
  80. public function setRateChartIndicator($RateChartIndicator)
  81. {
  82. $this->RateChartIndicator = $RateChartIndicator;
  83. }
  84. }