| 1: | <?php |
| 2: | |
| 3: | |
| 4: | |
| 5: | |
| 6: | namespace Worldline\Connect\Sdk\V1\Domain; |
| 7: | |
| 8: | use UnexpectedValueException; |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | class BankAccountBbanRefund extends BankAccountBban |
| 14: | { |
| 15: | |
| 16: | |
| 17: | |
| 18: | public $bankCity = null; |
| 19: | |
| 20: | |
| 21: | |
| 22: | |
| 23: | public $patronymicName = null; |
| 24: | |
| 25: | |
| 26: | |
| 27: | |
| 28: | public $swiftCode = null; |
| 29: | |
| 30: | |
| 31: | |
| 32: | |
| 33: | public function toObject() |
| 34: | { |
| 35: | $object = parent::toObject(); |
| 36: | if (!is_null($this->bankCity)) { |
| 37: | $object->bankCity = $this->bankCity; |
| 38: | } |
| 39: | if (!is_null($this->patronymicName)) { |
| 40: | $object->patronymicName = $this->patronymicName; |
| 41: | } |
| 42: | if (!is_null($this->swiftCode)) { |
| 43: | $object->swiftCode = $this->swiftCode; |
| 44: | } |
| 45: | return $object; |
| 46: | } |
| 47: | |
| 48: | |
| 49: | |
| 50: | |
| 51: | |
| 52: | |
| 53: | public function fromObject($object) |
| 54: | { |
| 55: | parent::fromObject($object); |
| 56: | if (property_exists($object, 'bankCity')) { |
| 57: | $this->bankCity = $object->bankCity; |
| 58: | } |
| 59: | if (property_exists($object, 'patronymicName')) { |
| 60: | $this->patronymicName = $object->patronymicName; |
| 61: | } |
| 62: | if (property_exists($object, 'swiftCode')) { |
| 63: | $this->swiftCode = $object->swiftCode; |
| 64: | } |
| 65: | return $this; |
| 66: | } |
| 67: | } |
| 68: | |