Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
encoder_communication.php
Go to the documentation of this file.
1 <?php
7 return [
8  'topics' => [
9  'customer.created' => [
10  'request_type' => 'object_interface',
11  'request' => \Magento\Customer\Api\Data\CustomerInterface::class,
12  'response' => null,
13  ],
14  'customer.list.retrieved' => [
15  'request_type' => 'object_interface',
16  'request' => 'Magento\Customer\Api\Data\CustomerInterface[]',
17  'response' => null,
18  ],
19  'customer.updated' => [
20  'request_type' => 'object_interface',
21  'request' => \Magento\Customer\Api\Data\CustomerInterface::class,
22  'response' => null,
23  ],
24  'customer.deleted' => [
25  'request_type' => 'object_interface',
26  'request' => \Magento\Customer\Api\Data\CustomerInterface::class,
27  'response' => null,
28  ],
29  'product.created' => [
30  'request_type' => 'object_interface',
31  'request' => \Magento\Catalog\Api\Data\ProductInterface::class,
32  'response' => null,
33  ],
34  ],
35 ];