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

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