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
800 B

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