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 | * @var string|null |
||
53 | */ |
||
54 | public $customerRefIDs; |
||
55 | |||
56 | /** |
||
57 | * @var string|null |
||
58 | */ |
||
59 | public $segmentRefIDs; |
||
60 | |||
61 | /** |
||
62 | * Service constructor. |
||
63 | * |
||
64 | * @param ServiceOptions $options |
||
65 | */ |
||
66 | public function __construct($options) |
||
74 | } |
||
75 |