| 1 | <?php |
||
| 34 | class Service |
||
| 35 | { |
||
| 36 | /** |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | public $TID; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var Identifier |
||
| 43 | */ |
||
| 44 | public $identifier; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @var ServiceProvider |
||
| 48 | */ |
||
| 49 | public $serviceProvider; |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Service constructor. |
||
| 53 | * |
||
| 54 | * @param ServiceBookPriceServiceOptions $options |
||
| 55 | */ |
||
| 56 | public function __construct($options) |
||
| 62 | } |
||
| 63 |