1 | <?php |
||
12 | class Request extends AbstractRequest |
||
13 | { |
||
14 | /** |
||
15 | * @var Customer |
||
16 | * |
||
17 | * @JMS\Type("Speicher210\Monsum\Api\Model\Customer") |
||
18 | * @JMS\SerializedName("DATA") |
||
19 | */ |
||
20 | protected $data; |
||
21 | |||
22 | /** |
||
23 | * Constructor. |
||
24 | * |
||
25 | * @param Customer $customer The customer data for the request. |
||
26 | */ |
||
27 | 3 | public function __construct(Customer $customer) |
|
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 3 | public function getService() |
|
41 | } |
||
42 |