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.

205 lines
4.1 KiB

  1. <?php
  2. namespace SparkLib\UPS\Rate;
  3. class RestrictedArticlesType
  4. {
  5. /**
  6. *
  7. * @var string $AlcoholicBeveragesIndicator
  8. * @access public
  9. */
  10. public $AlcoholicBeveragesIndicator = null;
  11. /**
  12. *
  13. * @var string $DiagnosticSpecimensIndicator
  14. * @access public
  15. */
  16. public $DiagnosticSpecimensIndicator = null;
  17. /**
  18. *
  19. * @var string $PerishablesIndicator
  20. * @access public
  21. */
  22. public $PerishablesIndicator = null;
  23. /**
  24. *
  25. * @var string $PlantsIndicator
  26. * @access public
  27. */
  28. public $PlantsIndicator = null;
  29. /**
  30. *
  31. * @var string $SeedsIndicator
  32. * @access public
  33. */
  34. public $SeedsIndicator = null;
  35. /**
  36. *
  37. * @var string $SpecialExceptionsIndicator
  38. * @access public
  39. */
  40. public $SpecialExceptionsIndicator = null;
  41. /**
  42. *
  43. * @var string $TobaccoIndicator
  44. * @access public
  45. */
  46. public $TobaccoIndicator = null;
  47. /**
  48. *
  49. * @param string $AlcoholicBeveragesIndicator
  50. * @param string $DiagnosticSpecimensIndicator
  51. * @param string $PerishablesIndicator
  52. * @param string $PlantsIndicator
  53. * @param string $SeedsIndicator
  54. * @param string $SpecialExceptionsIndicator
  55. * @param string $TobaccoIndicator
  56. * @access public
  57. */
  58. public function __construct($AlcoholicBeveragesIndicator = null, $DiagnosticSpecimensIndicator = null, $PerishablesIndicator = null, $PlantsIndicator = null, $SeedsIndicator = null, $SpecialExceptionsIndicator = null, $TobaccoIndicator = null)
  59. {
  60. $this->AlcoholicBeveragesIndicator = $AlcoholicBeveragesIndicator;
  61. $this->DiagnosticSpecimensIndicator = $DiagnosticSpecimensIndicator;
  62. $this->PerishablesIndicator = $PerishablesIndicator;
  63. $this->PlantsIndicator = $PlantsIndicator;
  64. $this->SeedsIndicator = $SeedsIndicator;
  65. $this->SpecialExceptionsIndicator = $SpecialExceptionsIndicator;
  66. $this->TobaccoIndicator = $TobaccoIndicator;
  67. }
  68. /**
  69. *
  70. * @return string
  71. */
  72. public function getAlcoholicBeveragesIndicator()
  73. {
  74. return $this->AlcoholicBeveragesIndicator;
  75. }
  76. /**
  77. *
  78. * @param string $AlcoholicBeveragesIndicator
  79. */
  80. public function setAlcoholicBeveragesIndicator($AlcoholicBeveragesIndicator)
  81. {
  82. $this->AlcoholicBeveragesIndicator = $AlcoholicBeveragesIndicator;
  83. }
  84. /**
  85. *
  86. * @return string
  87. */
  88. public function getDiagnosticSpecimensIndicator()
  89. {
  90. return $this->DiagnosticSpecimensIndicator;
  91. }
  92. /**
  93. *
  94. * @param string $DiagnosticSpecimensIndicator
  95. */
  96. public function setDiagnosticSpecimensIndicator($DiagnosticSpecimensIndicator)
  97. {
  98. $this->DiagnosticSpecimensIndicator = $DiagnosticSpecimensIndicator;
  99. }
  100. /**
  101. *
  102. * @return string
  103. */
  104. public function getPerishablesIndicator()
  105. {
  106. return $this->PerishablesIndicator;
  107. }
  108. /**
  109. *
  110. * @param string $PerishablesIndicator
  111. */
  112. public function setPerishablesIndicator($PerishablesIndicator)
  113. {
  114. $this->PerishablesIndicator = $PerishablesIndicator;
  115. }
  116. /**
  117. *
  118. * @return string
  119. */
  120. public function getPlantsIndicator()
  121. {
  122. return $this->PlantsIndicator;
  123. }
  124. /**
  125. *
  126. * @param string $PlantsIndicator
  127. */
  128. public function setPlantsIndicator($PlantsIndicator)
  129. {
  130. $this->PlantsIndicator = $PlantsIndicator;
  131. }
  132. /**
  133. *
  134. * @return string
  135. */
  136. public function getSeedsIndicator()
  137. {
  138. return $this->SeedsIndicator;
  139. }
  140. /**
  141. *
  142. * @param string $SeedsIndicator
  143. */
  144. public function setSeedsIndicator($SeedsIndicator)
  145. {
  146. $this->SeedsIndicator = $SeedsIndicator;
  147. }
  148. /**
  149. *
  150. * @return string
  151. */
  152. public function getSpecialExceptionsIndicator()
  153. {
  154. return $this->SpecialExceptionsIndicator;
  155. }
  156. /**
  157. *
  158. * @param string $SpecialExceptionsIndicator
  159. */
  160. public function setSpecialExceptionsIndicator($SpecialExceptionsIndicator)
  161. {
  162. $this->SpecialExceptionsIndicator = $SpecialExceptionsIndicator;
  163. }
  164. /**
  165. *
  166. * @return string
  167. */
  168. public function getTobaccoIndicator()
  169. {
  170. return $this->TobaccoIndicator;
  171. }
  172. /**
  173. *
  174. * @param string $TobaccoIndicator
  175. */
  176. public function setTobaccoIndicator($TobaccoIndicator)
  177. {
  178. $this->TobaccoIndicator = $TobaccoIndicator;
  179. }
  180. }