| 1 | <?php |
||
| 5 | class saphOrderReady |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $passKey = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $refId = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var ArrayOfOrderLineItem |
||
| 19 | */ |
||
| 20 | protected $orderLineItems = null; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $passKey |
||
| 24 | * @param string $refId |
||
| 25 | * @param ArrayOfOrderLineItem $orderLineItems |
||
| 26 | */ |
||
| 27 | public function __construct($passKey = null, $refId = null, $orderLineItems = null) |
||
| 28 | { |
||
| 29 | $this->passKey = $passKey; |
||
| 30 | $this->refId = $refId; |
||
| 31 | $this->orderLineItems = $orderLineItems; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getPassKey() |
||
| 38 | { |
||
| 39 | return $this->passKey; |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param string $passKey |
||
| 44 | * |
||
| 45 | * @return \SmsaSDK\Methods\saphOrderReady |
||
| 46 | */ |
||
| 47 | public function setPassKey($passKey) |
||
| 48 | { |
||
| 49 | $this->passKey = $passKey; |
||
| 50 | |||
| 51 | return $this; |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return string |
||
| 56 | */ |
||
| 57 | public function getRefId() |
||
| 58 | { |
||
| 59 | return $this->refId; |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @param string $refId |
||
| 64 | * |
||
| 65 | * @return \SmsaSDK\Methods\saphOrderReady |
||
| 66 | */ |
||
| 67 | public function setRefId($refId) |
||
| 68 | { |
||
| 69 | $this->refId = $refId; |
||
| 70 | |||
| 71 | return $this; |
||
| 72 | } |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @return ArrayOfOrderLineItem |
||
| 76 | */ |
||
| 77 | public function getOrderLineItems() |
||
| 78 | { |
||
| 79 | return $this->orderLineItems; |
||
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @param ArrayOfOrderLineItem $orderLineItems |
||
| 84 | * |
||
| 85 | * @return \SmsaSDK\Methods\saphOrderReady |
||
| 86 | */ |
||
| 87 | public function setOrderLineItems($orderLineItems) |
||
| 88 | { |
||
| 89 | $this->orderLineItems = $orderLineItems; |
||
| 90 | |||
| 91 | return $this; |
||
| 92 | } |
||
| 93 | } |
||
| 94 |