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.

124 lines
2.1 KiB

  1. <?php
  2. namespace SparkLib\UPS\Rate;
  3. class DryIceType
  4. {
  5. /**
  6. *
  7. * @var string $RegulationSet
  8. * @access public
  9. */
  10. public $RegulationSet = null;
  11. /**
  12. *
  13. * @var DryIceWeightType $DryIceWeight
  14. * @access public
  15. */
  16. public $DryIceWeight = null;
  17. /**
  18. *
  19. * @var string $MedicalUseIndicator
  20. * @access public
  21. */
  22. public $MedicalUseIndicator = null;
  23. /**
  24. *
  25. * @var string $AuditRequired
  26. * @access public
  27. */
  28. public $AuditRequired = null;
  29. /**
  30. *
  31. * @param string $RegulationSet
  32. * @param DryIceWeightType $DryIceWeight
  33. * @param string $MedicalUseIndicator
  34. * @param string $AuditRequired
  35. * @access public
  36. */
  37. public function __construct($RegulationSet = null, $DryIceWeight = null, $MedicalUseIndicator = null, $AuditRequired = null)
  38. {
  39. $this->RegulationSet = $RegulationSet;
  40. $this->DryIceWeight = $DryIceWeight;
  41. $this->MedicalUseIndicator = $MedicalUseIndicator;
  42. $this->AuditRequired = $AuditRequired;
  43. }
  44. /**
  45. *
  46. * @return string
  47. */
  48. public function getRegulationSet()
  49. {
  50. return $this->RegulationSet;
  51. }
  52. /**
  53. *
  54. * @param string $RegulationSet
  55. */
  56. public function setRegulationSet($RegulationSet)
  57. {
  58. $this->RegulationSet = $RegulationSet;
  59. }
  60. /**
  61. *
  62. * @return DryIceWeightType
  63. */
  64. public function getDryIceWeight()
  65. {
  66. return $this->DryIceWeight;
  67. }
  68. /**
  69. *
  70. * @param DryIceWeightType $DryIceWeight
  71. */
  72. public function setDryIceWeight($DryIceWeight)
  73. {
  74. $this->DryIceWeight = $DryIceWeight;
  75. }
  76. /**
  77. *
  78. * @return string
  79. */
  80. public function getMedicalUseIndicator()
  81. {
  82. return $this->MedicalUseIndicator;
  83. }
  84. /**
  85. *
  86. * @param string $MedicalUseIndicator
  87. */
  88. public function setMedicalUseIndicator($MedicalUseIndicator)
  89. {
  90. $this->MedicalUseIndicator = $MedicalUseIndicator;
  91. }
  92. /**
  93. *
  94. * @return string
  95. */
  96. public function getAuditRequired()
  97. {
  98. return $this->AuditRequired;
  99. }
  100. /**
  101. *
  102. * @param string $AuditRequired
  103. */
  104. public function setAuditRequired($AuditRequired)
  105. {
  106. $this->AuditRequired = $AuditRequired;
  107. }
  108. }