|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace net\authorize\api\contract\v1; |
| 4 | + |
| 5 | +/** |
| 6 | + * Class representing ArbTransactionType |
| 7 | + * |
| 8 | + * |
| 9 | + * XSD Type: arbTransaction |
| 10 | + */ |
| 11 | +class ArbTransactionType |
| 12 | +{ |
| 13 | + |
| 14 | + /** |
| 15 | + * @property string $transId |
| 16 | + */ |
| 17 | + private $transId = null; |
| 18 | + |
| 19 | + /** |
| 20 | + * @property string $response |
| 21 | + */ |
| 22 | + private $response = null; |
| 23 | + |
| 24 | + /** |
| 25 | + * @property \DateTime $submitTimeUTC |
| 26 | + */ |
| 27 | + private $submitTimeUTC = null; |
| 28 | + |
| 29 | + /** |
| 30 | + * @property integer $payNum |
| 31 | + */ |
| 32 | + private $payNum = null; |
| 33 | + |
| 34 | + /** |
| 35 | + * @property integer $attemptNum |
| 36 | + */ |
| 37 | + private $attemptNum = null; |
| 38 | + |
| 39 | + /** |
| 40 | + * Gets as transId |
| 41 | + * |
| 42 | + * @return string |
| 43 | + */ |
| 44 | + public function getTransId() |
| 45 | + { |
| 46 | + return $this->transId; |
| 47 | + } |
| 48 | + |
| 49 | + /** |
| 50 | + * Sets a new transId |
| 51 | + * |
| 52 | + * @param string $transId |
| 53 | + * @return self |
| 54 | + */ |
| 55 | + public function setTransId($transId) |
| 56 | + { |
| 57 | + $this->transId = $transId; |
| 58 | + return $this; |
| 59 | + } |
| 60 | + |
| 61 | + /** |
| 62 | + * Gets as response |
| 63 | + * |
| 64 | + * @return string |
| 65 | + */ |
| 66 | + public function getResponse() |
| 67 | + { |
| 68 | + return $this->response; |
| 69 | + } |
| 70 | + |
| 71 | + /** |
| 72 | + * Sets a new response |
| 73 | + * |
| 74 | + * @param string $response |
| 75 | + * @return self |
| 76 | + */ |
| 77 | + public function setResponse($response) |
| 78 | + { |
| 79 | + $this->response = $response; |
| 80 | + return $this; |
| 81 | + } |
| 82 | + |
| 83 | + /** |
| 84 | + * Gets as submitTimeUTC |
| 85 | + * |
| 86 | + * @return \DateTime |
| 87 | + */ |
| 88 | + public function getSubmitTimeUTC() |
| 89 | + { |
| 90 | + return $this->submitTimeUTC; |
| 91 | + } |
| 92 | + |
| 93 | + /** |
| 94 | + * Sets a new submitTimeUTC |
| 95 | + * |
| 96 | + * @param \DateTime $submitTimeUTC |
| 97 | + * @return self |
| 98 | + */ |
| 99 | + public function setSubmitTimeUTC(\DateTime $submitTimeUTC) |
| 100 | + { |
| 101 | + $this->submitTimeUTC = $submitTimeUTC; |
| 102 | + return $this; |
| 103 | + } |
| 104 | + |
| 105 | + /** |
| 106 | + * Gets as payNum |
| 107 | + * |
| 108 | + * @return integer |
| 109 | + */ |
| 110 | + public function getPayNum() |
| 111 | + { |
| 112 | + return $this->payNum; |
| 113 | + } |
| 114 | + |
| 115 | + /** |
| 116 | + * Sets a new payNum |
| 117 | + * |
| 118 | + * @param integer $payNum |
| 119 | + * @return self |
| 120 | + */ |
| 121 | + public function setPayNum($payNum) |
| 122 | + { |
| 123 | + $this->payNum = $payNum; |
| 124 | + return $this; |
| 125 | + } |
| 126 | + |
| 127 | + /** |
| 128 | + * Gets as attemptNum |
| 129 | + * |
| 130 | + * @return integer |
| 131 | + */ |
| 132 | + public function getAttemptNum() |
| 133 | + { |
| 134 | + return $this->attemptNum; |
| 135 | + } |
| 136 | + |
| 137 | + /** |
| 138 | + * Sets a new attemptNum |
| 139 | + * |
| 140 | + * @param integer $attemptNum |
| 141 | + * @return self |
| 142 | + */ |
| 143 | + public function setAttemptNum($attemptNum) |
| 144 | + { |
| 145 | + $this->attemptNum = $attemptNum; |
| 146 | + return $this; |
| 147 | + } |
| 148 | + |
| 149 | + |
| 150 | +} |
| 151 | + |
0 commit comments