| 1 | <?php |
||
| 31 | class OriginatorDetails |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $originatorId; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Office ID |
||
| 40 | * |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | public $inHouseIdentification1; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @var string |
||
| 47 | */ |
||
| 48 | public $inHouseIdentification2; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @var string |
||
| 52 | */ |
||
| 53 | public $inHouseIdentification3; |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @param string|null $officeId |
||
| 57 | */ |
||
| 58 | public function __construct($officeId = null) |
||
| 62 | } |
||
| 63 |