1 | <?php |
||
34 | class ColumnKeys extends FallbackColumnKeys |
||
35 | { |
||
36 | |||
37 | /** |
||
38 | * Name for the column 'sku'. |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | const SKU = 'sku'; |
||
43 | |||
44 | /** |
||
45 | * Name for the column 'categories'. |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | const CATEGORIES = 'categories'; |
||
50 | |||
51 | /** |
||
52 | * Name for the column 'product_websites'. |
||
53 | * |
||
54 | * @var string |
||
55 | */ |
||
56 | const PRODUCT_WEBSITES = 'product_websites'; |
||
57 | |||
58 | /** |
||
59 | * Name for the column 'created_at'. |
||
60 | * |
||
61 | * @var string |
||
62 | */ |
||
63 | const CREATED_AT = 'created_at'; |
||
64 | |||
65 | /** |
||
66 | * Name for the column 'updated_at'. |
||
67 | * |
||
68 | * @var string |
||
69 | */ |
||
70 | const UPDATED_AT = 'updated_at'; |
||
71 | |||
72 | /** |
||
73 | * Name for the column 'qty'. |
||
74 | * |
||
75 | * @var string |
||
76 | */ |
||
77 | const QTY = 'qty'; |
||
78 | |||
79 | /** |
||
80 | * Name for the column 'is_in_stock'. |
||
81 | * |
||
82 | * @var string |
||
83 | */ |
||
84 | const IS_IN_STOCK = 'is_in_stock'; |
||
85 | |||
86 | /** |
||
87 | * Name for the column 'quantity_and_stock_status'. |
||
88 | * |
||
89 | * @var string |
||
90 | */ |
||
91 | const QUANTITY_AND_STOCK_STATUS = 'quantity_and_stock_status'; |
||
92 | |||
93 | /** |
||
94 | * Name for the column 'website_id'. |
||
95 | * |
||
96 | * @var string |
||
97 | */ |
||
98 | const WEBSITE_ID = 'website_id'; |
||
99 | |||
100 | /** |
||
101 | * Name for the column 'additional_attributes'. |
||
102 | * |
||
103 | * @var string |
||
104 | */ |
||
105 | const ADDITIONAL_ATTRIBUTES = 'additional_attributes'; |
||
106 | |||
107 | /** |
||
108 | * Name for the column 'attribute_set_code'. |
||
109 | * |
||
110 | * @var string |
||
111 | */ |
||
112 | const ATTRIBUTE_SET_CODE = 'attribute_set_code'; |
||
113 | |||
114 | /** |
||
115 | * Name for the column 'url_key'. |
||
116 | * |
||
117 | * @var string |
||
118 | */ |
||
119 | const URL_KEY = 'url_key'; |
||
120 | |||
121 | /** |
||
122 | * Name for the column 'name'. |
||
123 | * |
||
124 | * @var string |
||
125 | */ |
||
126 | const NAME = 'name'; |
||
127 | } |
||
128 |