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.

43 lines
796 B

  1. <?php
  2. namespace SparkLib\UPS\Rate;
  3. class FRSShipmentType
  4. {
  5. /**
  6. *
  7. * @var TransportationChargesType $TransportationCharges
  8. * @access public
  9. */
  10. public $TransportationCharges = null;
  11. /**
  12. *
  13. * @param TransportationChargesType $TransportationCharges
  14. * @access public
  15. */
  16. public function __construct($TransportationCharges = null)
  17. {
  18. $this->TransportationCharges = $TransportationCharges;
  19. }
  20. /**
  21. *
  22. * @return TransportationChargesType
  23. */
  24. public function getTransportationCharges()
  25. {
  26. return $this->TransportationCharges;
  27. }
  28. /**
  29. *
  30. * @param TransportationChargesType $TransportationCharges
  31. */
  32. public function setTransportationCharges($TransportationCharges)
  33. {
  34. $this->TransportationCharges = $TransportationCharges;
  35. }
  36. }