| 1 | <?php |
||
| 11 | abstract class AbstractCustomerNotificationPayload extends AbstractNotificationPayload implements CustomerNotificationPayloadInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The customer for the customer notification. |
||
| 15 | * |
||
| 16 | * @var Customer |
||
| 17 | * |
||
| 18 | * @JMS\Type("Speicher210\Monsum\Api\Model\Notification\Customer\Customer") |
||
| 19 | * @JMS\SerializedName("customer") |
||
| 20 | */ |
||
| 21 | protected $customer; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function getCustomer() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function setCustomer($customer) |
||
| 40 | } |
||
| 41 |