1 | <?php |
||
32 | class MemberNames extends \TechDivision\Import\Product\Utils\MemberNames |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * Name for the member 'link_id'. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | const LINK_ID = 'link_id'; |
||
41 | |||
42 | /** |
||
43 | * Name for the member 'linked_product_id'. |
||
44 | * |
||
45 | * @var string |
||
46 | */ |
||
47 | const LINKED_PRODUCT_ID = 'linked_product_id'; |
||
48 | |||
49 | /** |
||
50 | * Name for the member 'link_type_id'. |
||
51 | * |
||
52 | * @var string |
||
53 | */ |
||
54 | const LINK_TYPE_ID = 'link_type_id'; |
||
55 | |||
56 | /** |
||
57 | * Name for the member 'product_link_attribute_id'. |
||
58 | * |
||
59 | * @var string |
||
60 | */ |
||
61 | const PRODUCT_LINK_ATTRIBUTE_ID = 'product_link_attribute_id'; |
||
62 | |||
63 | /** |
||
64 | * Name for the member 'product_link_attribute_code'. |
||
65 | * |
||
66 | * @var string |
||
67 | */ |
||
68 | const PRODUCT_LINK_ATTRIBUTE_CODE = 'product_link_attribute_code'; |
||
69 | |||
70 | /** |
||
71 | * Name for the member 'value'. |
||
72 | * |
||
73 | * @var string |
||
74 | */ |
||
75 | const VALUE = 'value'; |
||
76 | } |
||
77 |